]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/compat/compat.cpp
d57575bdf936dd8d613332bf383862eaa7ca7ec5
[bacula/bacula] / bacula / src / win32 / compat / compat.cpp
1 //                              -*- Mode: C++ -*-
2 // compat.cpp -- compatibilty layer to make bacula-fd run
3 //               natively under windows
4 //
5 // Copyright transferred from Raider Solutions, Inc to
6 //   Kern Sibbald and John Walker by express permission.
7 //
8 // Copyright (C) 2004 Kern Sibbald and John Walker
9 //
10 //   This program is free software; you can redistribute it and/or
11 //   modify it under the terms of the GNU General Public License as
12 //   published by the Free Software Foundation; either version 2 of
13 //   the License, or (at your option) any later version.
14 //
15 //   This program is distributed in the hope that it will be useful,
16 //   but WITHOUT ANY WARRANTY; without even the implied warranty of
17 //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 //   General Public License for more details.
19 //
20 //   You should have received a copy of the GNU General Public
21 //   License along with this program; if not, write to the Free
22 //   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 //   MA 02111-1307, USA.
24 //
25 // Author          : Christopher S. Hull
26 // Created On      : Sat Jan 31 15:55:00 2004
27 // $Id$
28
29 #include <stdio.h>
30
31 #include "compat.h"
32 #include "pthread.h"
33
34 #define b_errno_win32 (1<<29)
35
36 #define USE_WIN32_COMPAT_IO 1
37
38 extern void d_msg(const char *file, int line, int level, const char *fmt,...);
39 extern DWORD   g_platform_id;
40
41 // from MicroSoft SDK (KES) is the diff between Jan 1 1601 and Jan 1 1970
42 #ifdef HAVE_MINGW
43 #define WIN32_FILETIME_ADJUST 0x19DB1DED53E8000UL //Not sure it works
44 #else
45 #define WIN32_FILETIME_ADJUST 0x19DB1DED53E8000I64
46 #endif
47
48 #define WIN32_FILETIME_SCALE  10000000             // 100ns/second
49
50 extern "C" void
51 cygwin_conv_to_win32_path(const char *name, char *win32_name)
52 {
53     const char *fname = name;
54     while (*name) {
55         /* Check for Unix separator and convert to Win32 */
56         if (*name == '/') {
57             *win32_name++ = '\\';     /* convert char */
58         /* If Win32 separated that is "quoted", remove quote */
59         } else if (*name == '\\' && name[1] == '\\') {
60             *win32_name++ = '\\';
61             name++;                   /* skip first \ */
62         } else {
63             *win32_name++ = *name;    /* copy character */
64         }
65         name++;
66     }
67     /* Strip any trailing slash, if we stored something */
68     if (*fname != 0 && win32_name[-1] == '\\') {
69         win32_name[-1] = 0;
70     } else {
71         *win32_name = 0;
72     }
73 }
74
75
76 void
77 wchar_win32_path(const char *name, WCHAR *win32_name)
78 {
79     const char *fname = name;
80     while (*name) {
81         /* Check for Unix separator and convert to Win32 */
82         if (*name == '/') {
83             *win32_name++ = '\\';     /* convert char */
84         /* If Win32 separated that is "quoted", remove quote */
85         } else if (*name == '\\' && name[1] == '\\') {
86             *win32_name++ = '\\';
87             name++;                   /* skip first \ */
88         } else {
89             *win32_name++ = *name;    /* copy character */
90         }
91         name++;
92     }
93     /* Strip any trailing slash, if we stored something */
94     if (*fname != 0 && win32_name[-1] == '\\') {
95         win32_name[-1] = 0;
96     } else {
97         *win32_name = 0;
98     }
99 }
100
101 int
102 umask(int)
103 {
104     return 0;
105 }
106
107 int
108 chmod(const char *, mode_t)
109 {
110     return 0;
111 }
112
113 int
114 chown(const char *k, uid_t, gid_t)
115 {
116     return 0;
117 }
118
119 int
120 lchown(const char *k, uid_t, gid_t)
121 {
122     return 0;
123 }
124
125
126
127 long int
128 random(void)
129 {
130     return rand();
131 }
132
133 void
134 srandom(unsigned int seed)
135 {
136     srand(seed);
137 }
138 // /////////////////////////////////////////////////////////////////
139 // convert from Windows concept of time to Unix concept of time
140 // /////////////////////////////////////////////////////////////////
141 void
142 cvt_utime_to_ftime(const time_t  &time, FILETIME &wintime)
143 {
144     uint64_t mstime = time;
145     mstime *= WIN32_FILETIME_SCALE;
146     mstime += WIN32_FILETIME_ADJUST;
147
148     #ifdef HAVE_MINGW
149     wintime.dwLowDateTime = (DWORD)(mstime & 0xffffffffUL);
150     #else
151     wintime.dwLowDateTime = (DWORD)(mstime & 0xffffffffI64);
152     #endif
153     wintime.dwHighDateTime = (DWORD) ((mstime>>32)& 0xffffffffUL);
154 }
155
156 time_t
157 cvt_ftime_to_utime(const FILETIME &time)
158 {
159     uint64_t mstime = time.dwHighDateTime;
160     mstime <<= 32;
161     mstime |= time.dwLowDateTime;
162
163     mstime -= WIN32_FILETIME_ADJUST;
164     mstime /= WIN32_FILETIME_SCALE; // convert to seconds.
165
166     return (time_t) (mstime & 0xffffffff);
167 }
168
169 static const char *
170 errorString(void)
171 {
172    LPVOID lpMsgBuf;
173
174    FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
175                  FORMAT_MESSAGE_FROM_SYSTEM |
176                  FORMAT_MESSAGE_IGNORE_INSERTS,
177                  NULL,
178                  GetLastError(),
179                  MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default lang
180                  (LPTSTR) &lpMsgBuf,
181                  0,
182                  NULL);
183
184    return (const char *) lpMsgBuf;
185 }
186
187 #ifndef HAVE_MINGW
188
189 static int
190 statDir(const char *file, struct stat *sb)
191 {
192     WIN32_FIND_DATA info;       // window's file info
193
194     if (file[1] == ':' && file[2] == 0) {
195         d_msg(__FILE__, __LINE__, 99, "faking ROOT attrs(%s).\n", file);
196         sb->st_mode = S_IFDIR;
197         sb->st_mode |= S_IREAD|S_IEXEC|S_IWRITE;
198         time(&sb->st_ctime);
199         time(&sb->st_mtime);
200         time(&sb->st_atime);
201         return 0;
202     }
203     HANDLE h = FindFirstFile(file, &info);
204
205     if (h == INVALID_HANDLE_VALUE) {
206         const char *err = errorString();
207         d_msg(__FILE__, __LINE__, 99, "FindFirstFile(%s):%s\n", file, err);
208         LocalFree((void *)err);
209         errno = b_errno_win32;
210         return -1;
211     }
212
213     sb->st_mode = 0777;               /* start with everything */
214     if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
215         sb->st_mode &= ~(S_IRUSR|S_IRGRP|S_IROTH);
216     if (info.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)
217         sb->st_mode &= ~S_IRWXO; /* remove everything for other */
218     if (info.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
219         sb->st_mode |= S_ISVTX; /* use sticky bit -> hidden */
220     sb->st_mode |= S_IFDIR;
221
222     sb->st_size = info.nFileSizeHigh;
223     sb->st_size <<= 32;
224     sb->st_size |= info.nFileSizeLow;
225     sb->st_blksize = 4096;
226     sb->st_blocks = (uint32_t)(sb->st_size + 4095)/4096;
227
228     sb->st_atime = cvt_ftime_to_utime(info.ftLastAccessTime);
229     sb->st_mtime = cvt_ftime_to_utime(info.ftLastWriteTime);
230     sb->st_ctime = cvt_ftime_to_utime(info.ftCreationTime);
231     FindClose(h);
232
233     return 0;
234 }
235
236 static int
237 stat2(const char *file, struct stat *sb)
238 {
239     BY_HANDLE_FILE_INFORMATION info;
240     HANDLE h;
241     int rval = 0;
242     char tmpbuf[1024];
243     cygwin_conv_to_win32_path(file, tmpbuf);
244
245     DWORD attr = GetFileAttributes(tmpbuf);
246
247     if (attr == -1) {
248         const char *err = errorString();
249         d_msg(__FILE__, __LINE__, 99,
250               "GetFileAttrubtes(%s): %s\n", tmpbuf, err);
251         LocalFree((void *)err);
252         errno = b_errno_win32;
253         return -1;
254     }
255
256     if (attr & FILE_ATTRIBUTE_DIRECTORY)
257         return statDir(tmpbuf, sb);
258
259     h = CreateFile(tmpbuf, GENERIC_READ,
260                    FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
261
262     if (h == INVALID_HANDLE_VALUE) {
263         const char *err = errorString();
264         d_msg(__FILE__, __LINE__, 99,
265               "Cannot open file for stat (%s):%s\n", tmpbuf, err);
266         LocalFree((void *)err);
267         rval = -1;
268         errno = b_errno_win32;
269         goto error;
270     }
271
272     if (!GetFileInformationByHandle(h, &info)) {
273         const char *err = errorString();
274         d_msg(__FILE__, __LINE__, 99,
275               "GetfileInformationByHandle(%s): %s\n", tmpbuf, err);
276         LocalFree((void *)err);
277         rval = -1;
278         errno = b_errno_win32;
279         goto error;
280     }
281
282     sb->st_dev = info.dwVolumeSerialNumber;
283     sb->st_ino = info.nFileIndexHigh;
284     sb->st_ino <<= 32;
285     sb->st_ino |= info.nFileIndexLow;
286     sb->st_nlink = (short)info.nNumberOfLinks;
287
288     sb->st_mode = 0777;               /* start with everything */
289     if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
290         sb->st_mode &= ~(S_IRUSR|S_IRGRP|S_IROTH);
291     if (info.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)
292         sb->st_mode &= ~S_IRWXO; /* remove everything for other */
293     if (info.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
294         sb->st_mode |= S_ISVTX; /* use sticky bit -> hidden */
295     sb->st_mode |= S_IFREG;
296
297     sb->st_size = info.nFileSizeHigh;
298     sb->st_size <<= 32;
299     sb->st_size |= info.nFileSizeLow;
300     sb->st_blksize = 4096;
301     sb->st_blocks = (uint32_t)(sb->st_size + 4095)/4096;
302     sb->st_atime = cvt_ftime_to_utime(info.ftLastAccessTime);
303     sb->st_mtime = cvt_ftime_to_utime(info.ftLastWriteTime);
304     sb->st_ctime = cvt_ftime_to_utime(info.ftCreationTime);
305
306 error:
307     CloseHandle(h);
308     return rval;
309 }
310
311 int
312 stat(const char *file, struct stat *sb)
313 {
314     WIN32_FILE_ATTRIBUTE_DATA data;
315     errno = 0;
316
317
318     memset(sb, 0, sizeof(*sb));
319
320     if (g_platform_id == VER_PLATFORM_WIN32_WINDOWS)
321         return stat2(file, sb);
322
323     // otherwise we're on NT
324 #if 0
325     WCHAR buf[32767];
326     buf[0] = '\\';
327     buf[1] = '\\';
328     buf[2] = '?';
329     buf[3] = '\\';
330
331     wchar_win32_path(file, buf+4);
332
333     if (!GetFileAttributesExW((WCHAR *)buf, GetFileExInfoStandard, &data))
334         return stat2(file, sb);
335 #else
336     if (!GetFileAttributesEx(file, GetFileExInfoStandard, &data))
337         return stat2(file, sb);
338 #endif
339
340     sb->st_mode = 0777;               /* start with everything */
341     if (data.dwFileAttributes & FILE_ATTRIBUTE_READONLY)
342         sb->st_mode &= ~(S_IRUSR|S_IRGRP|S_IROTH);
343     if (data.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)
344         sb->st_mode &= ~S_IRWXO; /* remove everything for other */
345     if (data.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
346         sb->st_mode |= S_ISVTX; /* use sticky bit -> hidden */
347
348     if (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
349         sb->st_mode |= S_IFDIR;
350     else
351         sb->st_mode |= S_IFREG;
352
353     sb->st_nlink = 1;
354     sb->st_size = data.nFileSizeHigh;
355     sb->st_size <<= 32;
356     sb->st_size |= data.nFileSizeLow;
357     sb->st_blksize = 4096;
358     sb->st_blocks = (uint32_t)(sb->st_size + 4095)/4096;
359     sb->st_atime = cvt_ftime_to_utime(data.ftLastAccessTime);
360     sb->st_mtime = cvt_ftime_to_utime(data.ftLastWriteTime);
361     sb->st_ctime = cvt_ftime_to_utime(data.ftCreationTime);
362     return 0;
363 }
364
365 #endif //HAVE_MINGW
366
367 int
368 lstat(const char *file, struct stat *sb)
369 {
370     return stat(file, sb);
371 }
372
373 void
374 sleep(int sec)
375 {
376     Sleep(sec * 1000);
377 }
378
379 int
380 geteuid(void)
381 {
382     return 0;
383 }
384
385 int
386 execvp(const char *, char *[]) {
387     errno = ENOSYS;
388     return -1;
389 }
390
391
392 int
393 fork(void)
394 {
395     errno = ENOSYS;
396     return -1;
397 }
398
399 int
400 pipe(int[])
401 {
402     errno = ENOSYS;
403     return -1;
404 }
405
406 int
407 waitpid(int, int*, int)
408 {
409     errno = ENOSYS;
410     return -1;
411 }
412
413 int
414 readlink(const char *, char *, int)
415 {
416     errno = ENOSYS;
417     return -1;
418 }
419
420
421 #ifndef HAVE_MINGW
422 int
423 strcasecmp(const char *s1, const char *s2)
424 {
425     register int ch1, ch2;
426
427     if (s1==s2)
428         return 0;       /* strings are equal if same object. */
429     else if (!s1)
430         return -1;
431     else if (!s2)
432         return 1;
433     do
434     {
435         ch1 = *s1;
436         ch2 = *s2;
437         s1++;
438         s2++;
439     } while (ch1 != 0 && tolower(ch1) == tolower(ch2));
440
441   return(ch1 - ch2);
442 }
443 #endif //HAVE_MINGW
444
445 int
446 strncasecmp(const char *s1, const char *s2, int len)
447 {
448     register int ch1, ch2;
449
450     if (s1==s2)
451         return 0;       /* strings are equal if same object. */
452     else if (!s1)
453         return -1;
454     else if (!s2)
455         return 1;
456     while (len--)
457     {
458         ch1 = *s1;
459         ch2 = *s2;
460         s1++;
461         s2++;
462         if (ch1 == 0 || tolower(ch1) != tolower(ch2)) break;
463     } 
464
465     return (ch1 - ch2);
466 }
467
468 int
469 gettimeofday(struct timeval *tv, struct timezone *)
470 {
471     SYSTEMTIME now;
472     FILETIME tmp;
473     GetSystemTime(&now);
474
475     if (tv == NULL) {
476        errno = EINVAL;
477        return -1;
478     }
479     if (!SystemTimeToFileTime(&now, &tmp)) {
480        errno = b_errno_win32;
481        return -1;
482     }
483
484     int64_t _100nsec = tmp.dwHighDateTime;
485     _100nsec <<= 32;
486     _100nsec |= tmp.dwLowDateTime;
487     _100nsec -= WIN32_FILETIME_ADJUST;
488
489     tv->tv_sec =(long) (_100nsec / 10000000);
490     tv->tv_usec = (long) ((_100nsec % 10000000)/10);
491     return 0;
492
493 }
494
495 int
496 syslog(int type, const char *fmt, const char *msg)
497 {
498 /*#ifndef HAVE_CONSOLE
499     MessageBox(NULL, msg, "Bacula", MB_OK);
500 #endif*/
501     return 0;
502 }
503
504 struct passwd *
505 getpwuid(uid_t)
506 {
507     return NULL;
508 }
509
510 struct group *
511 getgrgid(uid_t)
512 {
513     return NULL;
514 }
515
516 // implement opendir/readdir/closedir on top of window's API
517 typedef struct _dir
518 {
519     WIN32_FIND_DATA data;       // window's file info
520     const char *spec;           // the directory we're traversing
521     HANDLE      dirh;           // the search handle
522     BOOL        valid;          // the info in data field is valid
523     UINT32      offset;         // pseudo offset for d_off
524 } _dir;
525
526 DIR *
527 opendir(const char *path)
528 {
529     int max_len = strlen(path) + 16;
530     _dir *rval = NULL;
531     if (path == NULL) {
532        errno = ENOENT;
533        return NULL;
534     }
535
536     rval = (_dir *)malloc(sizeof(_dir));
537     if (rval == NULL) return NULL;
538     char *tspec = (char *)malloc(max_len);
539     if (tspec == NULL) return NULL;
540
541     if (g_platform_id != VER_PLATFORM_WIN32_WINDOWS) {
542         // allow path to be 32767 bytes
543         tspec[0] = '\\';
544         tspec[1] = '\\';
545         tspec[2] = '?';
546         tspec[3] = '\\';
547         tspec[4] = 0;
548         cygwin_conv_to_win32_path(path, tspec+4);
549     } else {
550         cygwin_conv_to_win32_path(path, tspec);
551     }
552
553     strncat(tspec, "\\*", max_len);
554     rval->spec = tspec;
555
556     rval->dirh = FindFirstFile(rval->spec, &rval->data);
557     d_msg(__FILE__, __LINE__,
558           99, "opendir(%s)\n\tspec=%s,\n\tFindFirstFile returns %d\n",
559           path, rval->spec, rval->dirh);
560
561     rval->offset = 0;
562     if (rval->dirh == INVALID_HANDLE_VALUE)
563         goto err;
564     rval->valid = 1;
565     d_msg(__FILE__, __LINE__,
566           99, "\tFirstFile=%s\n", rval->data.cFileName);
567     return (DIR *)rval;
568
569 err:
570     free((void *)rval->spec);
571     free(rval);
572     errno = b_errno_win32;
573     return NULL;
574 }
575
576 int
577 closedir(DIR *dirp)
578 {
579     _dir *dp = (_dir *)dirp;
580     FindClose(dp->dirh);
581     free((void *)dp->spec);
582     free((void *)dp);
583     return 0;
584 }
585
586 /*
587   typedef struct _WIN32_FIND_DATA {
588     DWORD dwFileAttributes;
589     FILETIME ftCreationTime;
590     FILETIME ftLastAccessTime;
591     FILETIME ftLastWriteTime;
592     DWORD nFileSizeHigh;
593     DWORD nFileSizeLow;
594     DWORD dwReserved0;
595     DWORD dwReserved1;
596     TCHAR cFileName[MAX_PATH];
597     TCHAR cAlternateFileName[14];
598 } WIN32_FIND_DATA, *PWIN32_FIND_DATA;
599 */
600
601 static int
602 copyin(struct dirent &dp, const char *fname)
603 {
604     dp.d_ino = 0;
605     dp.d_reclen = 0;
606     char *cp = dp.d_name;
607     while (*fname) {
608         *cp++ = *fname++;
609         dp.d_reclen++;
610     }
611         *cp = 0;
612     return dp.d_reclen;
613 }
614
615 int
616 readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result)
617 {
618
619     _dir *dp = (_dir *)dirp;
620     if (dp->valid) {
621         entry->d_off = dp->offset;
622         dp->offset += copyin(*entry, dp->data.cFileName);
623         *result = entry;              /* return entry address */
624         d_msg(__FILE__, __LINE__,
625               99, "readdir_r(%p, { d_name=\"%s\", d_reclen=%d, d_off=%d\n",
626               dirp, entry->d_name, entry->d_reclen, entry->d_off);
627     } else {
628 //      d_msg(__FILE__, __LINE__, 99, "readdir_r !valid\n");
629         errno = b_errno_win32;
630         return -1;
631     }
632     dp->valid = FindNextFile(dp->dirh, &dp->data);
633     return 0;
634 }
635
636 int
637 inet_aton(const char *a, struct in_addr *inp)
638 {
639
640     const char *cp = a;
641     uint32_t acc = 0, tmp = 0;
642     int dotc = 0;
643     if (!isdigit(*a)) return 0;
644     while (*cp) {
645         if (isdigit(*cp))
646             tmp = (tmp * 10) + (*cp -'0');
647         else if (*cp == '.') {
648             if (tmp > 255) return 0;
649             acc = (acc << 8) + tmp;
650             dotc++;
651         }
652         else return 0;
653     }
654
655     if (dotc != 3) return 0;
656     inp->s_addr = acc;
657     return 1;
658 }
659
660 int
661 nanosleep(const struct timespec *req, struct timespec *rem)
662 {
663     if (rem)
664         rem->tv_sec = rem->tv_nsec = 0;
665     Sleep((req->tv_sec * 1000) + (req->tv_nsec/100000));
666     return 0;
667 }
668
669 void
670 init_signals(void terminate(int sig))
671 {
672
673 }
674
675 void
676 init_stack_dump(void)
677 {
678
679 }
680
681
682 long
683 pathconf(const char *path, int name)
684 {
685     switch(name) {
686     case _PC_PATH_MAX :
687         if (strncmp(path, "\\\\?\\", 4) == 0)
688             return 32767;
689     case _PC_NAME_MAX :
690         return 255;
691     }
692     errno = ENOSYS;                                                         
693     return -1;
694 }
695
696 int
697 WSA_Init(void)
698 {
699     WORD wVersionRequested = MAKEWORD( 1, 1);
700     WSADATA wsaData;
701
702     int err = WSAStartup(wVersionRequested, &wsaData);
703
704
705     if (err != 0) {
706         printf("Can not start Windows Sockets\n");
707         errno = ENOSYS;
708         return -1;
709     }
710
711     return 0;
712 }
713
714
715 int
716 win32_chdir(const char *dir)
717 {
718     if (0 == SetCurrentDirectory(dir)) {
719        errno = b_errno_win32;
720        return -1;
721     }
722     return 0;
723 }
724
725 char *
726 win32_getcwd(char *buf, int maxlen)
727 {
728    int n =  GetCurrentDirectory(maxlen, buf);
729
730    if (n == 0 || n > maxlen) return NULL;
731
732    if (n+1 > maxlen) return NULL;
733    if (n != 3) {
734        buf[n] = '\\';
735        buf[n+1] = 0;
736    }
737    return buf;
738 }
739
740 #include "mswinver.h"
741
742 char WIN_VERSION_LONG[64];
743 char WIN_VERSION[32];
744
745 class winver {
746 public:
747     winver(void);
748 };
749
750 static winver INIT;                     // cause constructor to be called before main()
751
752 #include "bacula.h"
753 #include "jcr.h"
754
755 winver::winver(void)
756 {
757     const char *version = "";
758     const char *platform = "";
759     OSVERSIONINFO osvinfo;
760     osvinfo.dwOSVersionInfoSize = sizeof(osvinfo);
761
762     // Get the current OS version
763     if (!GetVersionEx(&osvinfo)) {
764         version = "Unknown";
765         platform = "Unknown";
766     }
767     else
768         switch (_mkversion(osvinfo.dwPlatformId, osvinfo.dwMajorVersion, osvinfo.dwMinorVersion))
769         {
770         case MS_WINDOWS_95: (version =  "Windows 95"); break;
771         case MS_WINDOWS_98: (version =  "Windows 98"); break;
772         case MS_WINDOWS_ME: (version =  "Windows ME"); break;
773         case MS_WINDOWS_NT4:(version =  "Windows NT 4.0"); platform = "NT"; break;
774         case MS_WINDOWS_2K: (version =  "Windows 2000");platform = "NT"; break;
775         case MS_WINDOWS_XP: (version =  "Windows XP");platform = "NT"; break;
776         case MS_WINDOWS_S2003: (version =  "Windows Server 2003");platform = "NT"; break;
777         default: version = "Windows ??"; break;
778         }
779
780     bstrncpy(WIN_VERSION_LONG, version, sizeof(WIN_VERSION_LONG));
781     snprintf(WIN_VERSION, sizeof(WIN_VERSION), "%s %d.%d.%d",
782              platform, osvinfo.dwMajorVersion, osvinfo.dwMinorVersion, osvinfo.dwBuildNumber);
783
784 #if 0
785     HANDLE h = CreateFile("G:\\foobar", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
786     CloseHandle(h);
787 #endif
788 #if 0
789     BPIPE *b = open_bpipe("ls -l", 10, "r");
790     char buf[1024];
791     while (!feof(b->rfd)) {
792         fgets(buf, sizeof(buf), b->rfd);
793     }
794     close_bpipe(b);
795 #endif
796 }
797
798 BOOL CreateChildProcess(VOID);
799 VOID WriteToPipe(VOID);
800 VOID ReadFromPipe(VOID);
801 VOID ErrorExit(LPTSTR);
802 VOID ErrMsg(LPTSTR, BOOL);
803
804 /**
805  * Check for a quoted path,  if an absolute path name is given and it contains
806  * spaces it will need to be quoted.  i.e.  "c:/Program Files/foo/bar.exe"
807  * CreateProcess() says the best way to ensure proper results with executables
808  * with spaces in path or filename is to quote the string.
809  */
810 const char *
811 getArgv0(const char *cmdline)
812 {
813
814     int inquote = 0;
815     for (const char *cp = cmdline; *cp; cp++)
816     {
817         if (*cp == '"') {
818             inquote = !inquote;
819         }
820         if (!inquote && isspace(*cp))
821             break;
822     }
823
824         
825     int len = cp - cmdline;
826     char *rval = (char *)malloc(len+1);
827
828     cp = cmdline;
829     char *rp = rval;
830     
831     while (len--)
832         *rp++ = *cp++;
833
834     *rp = 0;
835     return rval;
836 }
837
838
839 /**
840  * OK, so it would seem CreateProcess only handles true executables:
841  *  .com or .exe files.
842  * So test to see whether we're getting a .bat file and if so grab
843  * $COMSPEC value and pass batch file to it.
844  */
845 HANDLE
846 CreateChildProcess(const char *cmdline, HANDLE in, HANDLE out, HANDLE err)
847 {
848     PROCESS_INFORMATION piProcInfo;
849     STARTUPINFO siStartInfo;
850     BOOL bFuncRetn = FALSE;
851
852     // Set up members of the PROCESS_INFORMATION structure.
853
854     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
855
856     // Set up members of the STARTUPINFO structure.
857
858     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
859     siStartInfo.cb = sizeof(STARTUPINFO);
860     // setup new process to use supplied handles for stdin,stdout,stderr
861     // if supplied handles are not used the send a copy of our STD_HANDLE
862     // as appropriate
863     siStartInfo.dwFlags = STARTF_USESTDHANDLES;
864
865     if (in != INVALID_HANDLE_VALUE)
866         siStartInfo.hStdInput = in;
867     else
868         siStartInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
869
870     if (out != INVALID_HANDLE_VALUE)
871         siStartInfo.hStdOutput = out;
872     else
873         siStartInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
874     if (err != INVALID_HANDLE_VALUE)
875         siStartInfo.hStdError = err;
876     else
877         siStartInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE);
878     // Create the child process.
879
880     char exeFile[256];
881
882     const char *comspec = getenv("COMSPEC");
883     
884     if (comspec == NULL) // should never happen
885         return INVALID_HANDLE_VALUE;
886
887     char *cmdLine = (char *)alloca(strlen(cmdline) + strlen(comspec) + 16);
888     
889     strcpy(exeFile, comspec);
890     strcpy(cmdLine, comspec);
891     strcat(cmdLine, " /c ");
892     strcat(cmdLine, cmdline);
893
894     // try to execute program
895     bFuncRetn = CreateProcess(exeFile,
896                               cmdLine, // command line
897                               NULL, // process security attributes
898                               NULL, // primary thread security attributes
899                               TRUE, // handles are inherited
900                               0, // creation flags
901                               NULL, // use parent's environment
902                               NULL, // use parent's current directory
903                               &siStartInfo, // STARTUPINFO pointer
904                               &piProcInfo); // receives PROCESS_INFORMATION
905
906     if (bFuncRetn == 0) {
907         ErrorExit("CreateProcess failed\n");
908         const char *err = errorString();
909         d_msg(__FILE__, __LINE__, 99,
910               "CreateProcess(%s, %s, ...)=%s\n", exeFile, cmdLine, err);
911         LocalFree((void *)err);
912         return INVALID_HANDLE_VALUE;
913     }
914     // we don't need a handle on the process primary thread so we close
915     // this now.
916     CloseHandle(piProcInfo.hThread);
917
918     return piProcInfo.hProcess;
919 }
920
921
922 void
923 ErrorExit (LPTSTR lpszMessage)
924 {
925     d_msg(__FILE__, __LINE__, 0, "%s", lpszMessage);
926 }
927
928
929 /*
930 typedef struct s_bpipe {
931    pid_t worker_pid;
932    time_t worker_stime;
933    int wait;
934    btimer_t *timer_id;
935    FILE *rfd;
936    FILE *wfd;
937 } BPIPE;
938 */
939
940 static void
941 CloseIfValid(HANDLE handle)
942 {
943     if (handle != INVALID_HANDLE_VALUE)
944         CloseHandle(handle);
945 }
946
947 #ifndef HAVE_MINGW
948 BPIPE *
949 open_bpipe(char *prog, int wait, const char *mode)
950 {
951     HANDLE hChildStdinRd, hChildStdinWr, hChildStdinWrDup,
952         hChildStdoutRd, hChildStdoutWr, hChildStdoutRdDup,
953         hInputFile;
954
955     SECURITY_ATTRIBUTES saAttr;
956
957     BOOL fSuccess;
958
959     hChildStdinRd = hChildStdinWr = hChildStdinWrDup =
960         hChildStdoutRd = hChildStdoutWr = hChildStdoutRdDup =
961         hInputFile = INVALID_HANDLE_VALUE;
962
963     BPIPE *bpipe = (BPIPE *)malloc(sizeof(BPIPE));
964     memset((void *)bpipe, 0, sizeof(BPIPE));
965
966     int mode_read = (mode[0] == 'r');
967     int mode_write = (mode[0] == 'w' || mode[1] == 'w');
968
969
970     // Set the bInheritHandle flag so pipe handles are inherited.
971
972     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
973     saAttr.bInheritHandle = TRUE;
974     saAttr.lpSecurityDescriptor = NULL;
975
976     if (mode_read) {
977
978         // Create a pipe for the child process's STDOUT.
979         if (! CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) {
980             ErrorExit("Stdout pipe creation failed\n");
981             goto cleanup;
982         }
983         // Create noninheritable read handle and close the inheritable read
984         // handle.
985
986         fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
987                                    GetCurrentProcess(), &hChildStdoutRdDup , 0,
988                                    FALSE,
989                                    DUPLICATE_SAME_ACCESS);
990         if ( !fSuccess ) {
991             ErrorExit("DuplicateHandle failed");
992             goto cleanup;
993         }
994
995         CloseHandle(hChildStdoutRd);
996         hChildStdoutRd = INVALID_HANDLE_VALUE;
997     }
998
999     if (mode_write) {
1000
1001         // Create a pipe for the child process's STDIN.
1002
1003         if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) {
1004             ErrorExit("Stdin pipe creation failed\n");
1005             goto cleanup;
1006         }
1007
1008         // Duplicate the write handle to the pipe so it is not inherited.
1009         fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
1010                                    GetCurrentProcess(), &hChildStdinWrDup,
1011                                    0,
1012                                    FALSE,                  // not inherited
1013                                    DUPLICATE_SAME_ACCESS);
1014         if (!fSuccess) {
1015             ErrorExit("DuplicateHandle failed");
1016             goto cleanup;
1017         }
1018
1019         CloseHandle(hChildStdinWr);
1020         hChildStdinWr = INVALID_HANDLE_VALUE;
1021     }
1022     // spawn program with redirected handles as appropriate
1023     bpipe->worker_pid = (pid_t)
1024         CreateChildProcess(prog,             // commandline
1025                            hChildStdinRd,    // stdin HANDLE
1026                            hChildStdoutWr,   // stdout HANDLE
1027                            hChildStdoutWr);  // stderr HANDLE
1028
1029     if ((HANDLE) bpipe->worker_pid == INVALID_HANDLE_VALUE)
1030         goto cleanup;
1031
1032     bpipe->wait = wait;
1033     bpipe->worker_stime = time(NULL);
1034
1035     if (mode_read) {
1036         CloseHandle(hChildStdoutWr); // close our write side so when
1037                                      // process terminates we can
1038                                      // detect eof.
1039         // ugly but convert WIN32 HANDLE to FILE*
1040         int rfd = _open_osfhandle((long)hChildStdoutRdDup, O_RDONLY);
1041         if (rfd >= 0) {
1042            bpipe->rfd = _fdopen(rfd, "r");
1043         }
1044     }
1045     if (mode_write) {
1046         CloseHandle(hChildStdinRd); // close our read side so as not
1047                                     // to interfre with child's copy
1048         // ugly but convert WIN32 HANDLE to FILE*
1049         int wfd = _open_osfhandle((long)hChildStdinWrDup, O_WRONLY);
1050         if (wfd >= 0) {
1051            bpipe->wfd = _fdopen(wfd, "w");
1052         }
1053     }
1054
1055     if (wait > 0) {
1056         bpipe->timer_id = start_child_timer(bpipe->worker_pid, wait);
1057     }
1058
1059     return bpipe;
1060
1061 cleanup:
1062
1063     CloseIfValid(hChildStdoutRd);
1064     CloseIfValid(hChildStdoutRdDup);
1065     CloseIfValid(hChildStdinWr);
1066     CloseIfValid(hChildStdinWrDup);
1067
1068     free((void *) bpipe);
1069     errno = b_errno_win32;            /* do GetLastError() for error code */
1070     return NULL;
1071 }
1072
1073 #endif //HAVE_MINGW
1074
1075 int
1076 kill(int pid, int signal)
1077 {
1078     int rval = 0;
1079     if (!TerminateProcess((HANDLE)pid, (UINT) signal)) {
1080         rval = -1;
1081         errno = b_errno_win32;
1082     }
1083     CloseHandle((HANDLE)pid);
1084     return rval;
1085 }
1086
1087 #ifndef HAVE_MINGW
1088
1089 int
1090 close_bpipe(BPIPE *bpipe)
1091 {
1092     int rval = 0;
1093     if (bpipe->rfd) fclose(bpipe->rfd);
1094     if (bpipe->wfd) fclose(bpipe->wfd);
1095
1096     if (bpipe->wait) {
1097         int remaining_wait = bpipe->wait;
1098         do {
1099             DWORD exitCode;
1100             if (!GetExitCodeProcess((HANDLE)bpipe->worker_pid, &exitCode)) {
1101                 const char *err = errorString();
1102                 rval = b_errno_win32;
1103                 d_msg(__FILE__, __LINE__, 0,
1104                       "GetExitCode error %s\n", err);
1105                 LocalFree((void *)err);
1106                 break;
1107             }
1108
1109             if (exitCode == STILL_ACTIVE) {
1110                 bmicrosleep(1, 0);             /* wait one second */
1111                 remaining_wait--;
1112             }
1113             else break;
1114         } while(remaining_wait);
1115         rval = ETIME;                 /* timed out */
1116     }
1117
1118     if (bpipe->timer_id) {
1119         stop_child_timer(bpipe->timer_id);
1120     }
1121     free((void *)bpipe);
1122     return rval;
1123 }
1124
1125 int
1126 close_wpipe(BPIPE *bpipe)
1127 {
1128     int stat = 1;
1129
1130     if (bpipe->wfd) {
1131         fflush(bpipe->wfd);
1132         if (fclose(bpipe->wfd) != 0) {
1133             stat = 0;
1134         }
1135         bpipe->wfd = NULL;
1136     }
1137     return stat;
1138 }
1139
1140 #include "findlib/find.h"
1141
1142 int
1143 utime(const char *fname, struct utimbuf *times)
1144 {
1145     FILETIME acc, mod;
1146     char tmpbuf[1024];
1147
1148     cygwin_conv_to_win32_path(fname, tmpbuf);
1149
1150     cvt_utime_to_ftime(times->actime, acc);
1151     cvt_utime_to_ftime(times->modtime, mod);
1152
1153     HANDLE h = CreateFile(tmpbuf,
1154                           FILE_WRITE_ATTRIBUTES,
1155                           FILE_SHARE_WRITE,
1156                           NULL,
1157                           OPEN_EXISTING,
1158                           0,
1159                           NULL);
1160
1161     if (h == INVALID_HANDLE_VALUE) {
1162         const char *err = errorString();
1163         d_msg(__FILE__, __LINE__, 99,
1164               "Cannot open file for utime(%s,...):%s\n", tmpbuf, err);
1165         LocalFree((void *)err);
1166         errno = b_errno_win32;
1167         return -1;
1168     }
1169
1170     int rval = SetFileTime(h, NULL, &acc, &mod) ? 0 : -1;
1171     CloseHandle(h);
1172     return rval;
1173 }
1174
1175 #if USE_WIN32_COMPAT_IO
1176
1177 int
1178 open(const char *file, int flags, int mode)
1179 {
1180     return _open(file, flags|_O_BINARY, mode);
1181
1182 }
1183
1184 /*
1185  * Note, this works only for a file. If you want
1186  *   to close a socket, use closesocket(). 
1187  *   Bacula has been modified in src/lib/bnet.c
1188  *   to use closesocket().
1189  */
1190 int
1191 close(int fd)
1192 {
1193     return _close(fd);
1194 }
1195
1196 #ifndef HAVE_WXCONSOLE
1197 ssize_t
1198 read(int fd, void *buf, ssize_t len)
1199 {
1200     return _read(fd, buf, (size_t)len);
1201 }
1202
1203 ssize_t
1204 write(int fd, const void *buf, ssize_t len)
1205 {
1206     return _write(fd, buf, (size_t)len);
1207 }
1208 #endif
1209
1210 off_t
1211 lseek(int fd, off_t offset, int whence)
1212 {
1213     return _lseeki64(fd, offset, whence);
1214 }
1215
1216 int
1217 dup2(int fd1, int fd2)
1218 {
1219     return _dup2(fd1, fd2);
1220 }
1221 #else
1222 int
1223 open(const char *file, int flags, int mode)
1224 {
1225     DWORD access = 0;
1226     DWORD shareMode = 0;
1227     DWORD create = 0;
1228     DWORD msflags = 0;
1229     HANDLE foo;
1230     const char *remap = file;
1231
1232     if (flags & O_WRONLY) access = GENERIC_WRITE;
1233     else if (flags & O_RDWR) access = GENERIC_READ|GENERIC_WRITE;
1234     else access = GENERIC_READ;
1235
1236     if (flags & O_CREAT) create = CREATE_NEW;
1237     else create = OPEN_EXISTING;
1238
1239     if (flags & O_TRUNC) create = TRUNCATE_EXISTING;
1240
1241     if (!(flags & O_EXCL))
1242         shareMode = FILE_SHARE_DELETE|FILE_SHARE_READ|FILE_SHARE_WRITE;
1243
1244     if (flags & O_APPEND) {
1245         printf("open...APPEND not implemented yet.");
1246         exit(-1);
1247     }
1248
1249     foo = CreateFile(file, access, shareMode, NULL, create, msflags, NULL);
1250     if (INVALID_HANDLE_VALUE == foo) {
1251         errno = b_errno_win32;
1252         return(int) -1;
1253     }
1254     return (int)foo;
1255
1256 }
1257
1258
1259 int
1260 close(int fd)
1261 {
1262     if (!CloseHandle((HANDLE)fd)) {
1263         errno = b_errno_win32;
1264         return -1;
1265     }
1266
1267     return 0;
1268 }
1269
1270 ssize_t
1271 write(int fd, const void *data, ssize_t len)
1272 {
1273     BOOL status;
1274     DWORD bwrite;
1275     status = WriteFile((HANDLE)fd, data, len, &bwrite, NULL);
1276     if (status) return bwrite;
1277     errno = b_errno_win32;
1278     return -1;
1279 }
1280
1281
1282 ssize_t
1283 read(int fd, void *data, ssize_t len)
1284 {
1285     BOOL status;
1286     DWORD bread;
1287
1288     status = ReadFile((HANDLE)fd, data, len, &bread, NULL);
1289     if (status) return bread;
1290     errno = b_errno_win32;
1291     return -1;
1292 }
1293
1294 off_t
1295 lseek(int fd, off_t offset, int whence)
1296 {
1297     DWORD method = 0;
1298     DWORD val;
1299     switch (whence) {
1300     case SEEK_SET :
1301         method = FILE_BEGIN;
1302         break;
1303     case SEEK_CUR:
1304         method = FILE_CURRENT;
1305         break;
1306     case SEEK_END:
1307         method = FILE_END;
1308         break;
1309     default:
1310         errno = EINVAL;
1311         return -1;
1312     }
1313
1314     if ((val=SetFilePointer((HANDLE)fd, (DWORD)offset, NULL, method)) == INVALID_SET_FILE_POINTER) {
1315        errno = b_errno_win32;
1316        return -1;
1317     }
1318     /* ***FIXME*** I doubt this works right */
1319     return val;
1320 }
1321
1322 int
1323 dup2(int, int)
1324 {
1325     errno = ENOSYS;
1326     return -1;
1327 }
1328
1329
1330 #endif
1331
1332 #endif //HAVE_MINGW
1333
1334 #ifdef HAVE_MINGW
1335 /* syslog function, added by Nicolas Boichat */
1336 void closelog() {}
1337 #endif //HAVE_MINGW