]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/compat/compat.cpp
f5e07de92b2679c5789f7250f60874ad45ddd168
[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     _dir *dp = (_dir *)dirp;
619     if (dp->valid) {
620         entry->d_off = dp->offset;
621         dp->offset += copyin(*entry, dp->data.cFileName);
622         *result = entry;              /* return entry address */
623         d_msg(__FILE__, __LINE__,
624               99, "readdir_r(%p, { d_name=\"%s\", d_reclen=%d, d_off=%d\n",
625               dirp, entry->d_name, entry->d_reclen, entry->d_off);
626     } else {
627 //      d_msg(__FILE__, __LINE__, 99, "readdir_r !valid\n");
628         errno = b_errno_win32;
629         return -1;
630     }
631     dp->valid = FindNextFile(dp->dirh, &dp->data);
632     return 0;
633 }
634
635 /*
636  * Dotted IP address to network address
637  *
638  * Returns 1 if  OK
639  *         0 on error
640  */
641 int
642 inet_aton(const char *a, struct in_addr *inp)
643 {
644    const char *cp = a;
645    uint32_t acc = 0, tmp = 0;
646    int dotc = 0;
647
648    if (!isdigit(*cp)) {         /* first char must be digit */
649       return 0;                 /* error */
650    }
651    do {
652       if (isdigit(*cp)) {
653          tmp = (tmp * 10) + (*cp -'0');
654       } else if (*cp == '.' || *cp == 0) {
655          if (tmp > 255) {
656             return 0;           /* error */
657          }
658          acc = (acc << 8) + tmp;
659          dotc++;
660          tmp = 0;
661       } else {
662          return 0;              /* error */
663       }
664    } while (*cp++ != 0);
665    if (dotc != 4) {              /* want 3 .'s plus EOS */
666       return 0;                  /* error */
667    }
668    inp->s_addr = htonl(acc);     /* store addr in network format */
669    return 1;
670 }
671
672 int
673 nanosleep(const struct timespec *req, struct timespec *rem)
674 {
675     if (rem)
676         rem->tv_sec = rem->tv_nsec = 0;
677     Sleep((req->tv_sec * 1000) + (req->tv_nsec/100000));
678     return 0;
679 }
680
681 void
682 init_signals(void terminate(int sig))
683 {
684
685 }
686
687 void
688 init_stack_dump(void)
689 {
690
691 }
692
693
694 long
695 pathconf(const char *path, int name)
696 {
697     switch(name) {
698     case _PC_PATH_MAX :
699         if (strncmp(path, "\\\\?\\", 4) == 0)
700             return 32767;
701     case _PC_NAME_MAX :
702         return 255;
703     }
704     errno = ENOSYS;                                                         
705     return -1;
706 }
707
708 int
709 WSA_Init(void)
710 {
711     WORD wVersionRequested = MAKEWORD( 1, 1);
712     WSADATA wsaData;
713
714     int err = WSAStartup(wVersionRequested, &wsaData);
715
716
717     if (err != 0) {
718         printf("Can not start Windows Sockets\n");
719         errno = ENOSYS;
720         return -1;
721     }
722
723     return 0;
724 }
725
726
727 int
728 win32_chdir(const char *dir)
729 {
730     if (0 == SetCurrentDirectory(dir)) {
731        errno = b_errno_win32;
732        return -1;
733     }
734     return 0;
735 }
736
737 char *
738 win32_getcwd(char *buf, int maxlen)
739 {
740    int n =  GetCurrentDirectory(maxlen, buf);
741
742    if (n == 0 || n > maxlen) return NULL;
743
744    if (n+1 > maxlen) return NULL;
745    if (n != 3) {
746        buf[n] = '\\';
747        buf[n+1] = 0;
748    }
749    return buf;
750 }
751
752 #include "mswinver.h"
753
754 char WIN_VERSION_LONG[64];
755 char WIN_VERSION[32];
756
757 class winver {
758 public:
759     winver(void);
760 };
761
762 static winver INIT;                     // cause constructor to be called before main()
763
764 #include "bacula.h"
765 #include "jcr.h"
766
767 winver::winver(void)
768 {
769     const char *version = "";
770     const char *platform = "";
771     OSVERSIONINFO osvinfo;
772     osvinfo.dwOSVersionInfoSize = sizeof(osvinfo);
773
774     // Get the current OS version
775     if (!GetVersionEx(&osvinfo)) {
776         version = "Unknown";
777         platform = "Unknown";
778     }
779     else
780         switch (_mkversion(osvinfo.dwPlatformId, osvinfo.dwMajorVersion, osvinfo.dwMinorVersion))
781         {
782         case MS_WINDOWS_95: (version =  "Windows 95"); break;
783         case MS_WINDOWS_98: (version =  "Windows 98"); break;
784         case MS_WINDOWS_ME: (version =  "Windows ME"); break;
785         case MS_WINDOWS_NT4:(version =  "Windows NT 4.0"); platform = "NT"; break;
786         case MS_WINDOWS_2K: (version =  "Windows 2000");platform = "NT"; break;
787         case MS_WINDOWS_XP: (version =  "Windows XP");platform = "NT"; break;
788         case MS_WINDOWS_S2003: (version =  "Windows Server 2003");platform = "NT"; break;
789         default: version = "Windows ??"; break;
790         }
791
792     bstrncpy(WIN_VERSION_LONG, version, sizeof(WIN_VERSION_LONG));
793     snprintf(WIN_VERSION, sizeof(WIN_VERSION), "%s %d.%d.%d",
794              platform, osvinfo.dwMajorVersion, osvinfo.dwMinorVersion, osvinfo.dwBuildNumber);
795
796 #if 0
797     HANDLE h = CreateFile("G:\\foobar", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
798     CloseHandle(h);
799 #endif
800 #if 0
801     BPIPE *b = open_bpipe("ls -l", 10, "r");
802     char buf[1024];
803     while (!feof(b->rfd)) {
804         fgets(buf, sizeof(buf), b->rfd);
805     }
806     close_bpipe(b);
807 #endif
808 }
809
810 BOOL CreateChildProcess(VOID);
811 VOID WriteToPipe(VOID);
812 VOID ReadFromPipe(VOID);
813 VOID ErrorExit(LPTSTR);
814 VOID ErrMsg(LPTSTR, BOOL);
815
816 /**
817  * Check for a quoted path,  if an absolute path name is given and it contains
818  * spaces it will need to be quoted.  i.e.  "c:/Program Files/foo/bar.exe"
819  * CreateProcess() says the best way to ensure proper results with executables
820  * with spaces in path or filename is to quote the string.
821  */
822 const char *
823 getArgv0(const char *cmdline)
824 {
825
826     int inquote = 0;
827     for (const char *cp = cmdline; *cp; cp++)
828     {
829         if (*cp == '"') {
830             inquote = !inquote;
831         }
832         if (!inquote && isspace(*cp))
833             break;
834     }
835
836         
837     int len = cp - cmdline;
838     char *rval = (char *)malloc(len+1);
839
840     cp = cmdline;
841     char *rp = rval;
842     
843     while (len--)
844         *rp++ = *cp++;
845
846     *rp = 0;
847     return rval;
848 }
849
850
851 /**
852  * OK, so it would seem CreateProcess only handles true executables:
853  *  .com or .exe files.
854  * So test to see whether we're getting a .bat file and if so grab
855  * $COMSPEC value and pass batch file to it.
856  */
857 HANDLE
858 CreateChildProcess(const char *cmdline, HANDLE in, HANDLE out, HANDLE err)
859 {
860     PROCESS_INFORMATION piProcInfo;
861     STARTUPINFO siStartInfo;
862     BOOL bFuncRetn = FALSE;
863
864     // Set up members of the PROCESS_INFORMATION structure.
865
866     ZeroMemory( &piProcInfo, sizeof(PROCESS_INFORMATION) );
867
868     // Set up members of the STARTUPINFO structure.
869
870     ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) );
871     siStartInfo.cb = sizeof(STARTUPINFO);
872     // setup new process to use supplied handles for stdin,stdout,stderr
873     // if supplied handles are not used the send a copy of our STD_HANDLE
874     // as appropriate
875     siStartInfo.dwFlags = STARTF_USESTDHANDLES;
876
877     if (in != INVALID_HANDLE_VALUE)
878         siStartInfo.hStdInput = in;
879     else
880         siStartInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
881
882     if (out != INVALID_HANDLE_VALUE)
883         siStartInfo.hStdOutput = out;
884     else
885         siStartInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
886     if (err != INVALID_HANDLE_VALUE)
887         siStartInfo.hStdError = err;
888     else
889         siStartInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE);
890     // Create the child process.
891
892     char exeFile[256];
893
894     const char *comspec = getenv("COMSPEC");
895     
896     if (comspec == NULL) // should never happen
897         return INVALID_HANDLE_VALUE;
898
899     char *cmdLine = (char *)alloca(strlen(cmdline) + strlen(comspec) + 16);
900     
901     strcpy(exeFile, comspec);
902     strcpy(cmdLine, comspec);
903     strcat(cmdLine, " /c ");
904     strcat(cmdLine, cmdline);
905
906     // try to execute program
907     bFuncRetn = CreateProcess(exeFile,
908                               cmdLine, // command line
909                               NULL, // process security attributes
910                               NULL, // primary thread security attributes
911                               TRUE, // handles are inherited
912                               0, // creation flags
913                               NULL, // use parent's environment
914                               NULL, // use parent's current directory
915                               &siStartInfo, // STARTUPINFO pointer
916                               &piProcInfo); // receives PROCESS_INFORMATION
917
918     if (bFuncRetn == 0) {
919         ErrorExit("CreateProcess failed\n");
920         const char *err = errorString();
921         d_msg(__FILE__, __LINE__, 99,
922               "CreateProcess(%s, %s, ...)=%s\n", exeFile, cmdLine, err);
923         LocalFree((void *)err);
924         return INVALID_HANDLE_VALUE;
925     }
926     // we don't need a handle on the process primary thread so we close
927     // this now.
928     CloseHandle(piProcInfo.hThread);
929
930     return piProcInfo.hProcess;
931 }
932
933
934 void
935 ErrorExit (LPTSTR lpszMessage)
936 {
937     d_msg(__FILE__, __LINE__, 0, "%s", lpszMessage);
938 }
939
940
941 /*
942 typedef struct s_bpipe {
943    pid_t worker_pid;
944    time_t worker_stime;
945    int wait;
946    btimer_t *timer_id;
947    FILE *rfd;
948    FILE *wfd;
949 } BPIPE;
950 */
951
952 static void
953 CloseIfValid(HANDLE handle)
954 {
955     if (handle != INVALID_HANDLE_VALUE)
956         CloseHandle(handle);
957 }
958
959 #ifndef HAVE_MINGW
960 BPIPE *
961 open_bpipe(char *prog, int wait, const char *mode)
962 {
963     HANDLE hChildStdinRd, hChildStdinWr, hChildStdinWrDup,
964         hChildStdoutRd, hChildStdoutWr, hChildStdoutRdDup,
965         hInputFile;
966
967     SECURITY_ATTRIBUTES saAttr;
968
969     BOOL fSuccess;
970
971     hChildStdinRd = hChildStdinWr = hChildStdinWrDup =
972         hChildStdoutRd = hChildStdoutWr = hChildStdoutRdDup =
973         hInputFile = INVALID_HANDLE_VALUE;
974
975     BPIPE *bpipe = (BPIPE *)malloc(sizeof(BPIPE));
976     memset((void *)bpipe, 0, sizeof(BPIPE));
977
978     int mode_read = (mode[0] == 'r');
979     int mode_write = (mode[0] == 'w' || mode[1] == 'w');
980
981
982     // Set the bInheritHandle flag so pipe handles are inherited.
983
984     saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
985     saAttr.bInheritHandle = TRUE;
986     saAttr.lpSecurityDescriptor = NULL;
987
988     if (mode_read) {
989
990         // Create a pipe for the child process's STDOUT.
991         if (! CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) {
992             ErrorExit("Stdout pipe creation failed\n");
993             goto cleanup;
994         }
995         // Create noninheritable read handle and close the inheritable read
996         // handle.
997
998         fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
999                                    GetCurrentProcess(), &hChildStdoutRdDup , 0,
1000                                    FALSE,
1001                                    DUPLICATE_SAME_ACCESS);
1002         if ( !fSuccess ) {
1003             ErrorExit("DuplicateHandle failed");
1004             goto cleanup;
1005         }
1006
1007         CloseHandle(hChildStdoutRd);
1008         hChildStdoutRd = INVALID_HANDLE_VALUE;
1009     }
1010
1011     if (mode_write) {
1012
1013         // Create a pipe for the child process's STDIN.
1014
1015         if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) {
1016             ErrorExit("Stdin pipe creation failed\n");
1017             goto cleanup;
1018         }
1019
1020         // Duplicate the write handle to the pipe so it is not inherited.
1021         fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
1022                                    GetCurrentProcess(), &hChildStdinWrDup,
1023                                    0,
1024                                    FALSE,                  // not inherited
1025                                    DUPLICATE_SAME_ACCESS);
1026         if (!fSuccess) {
1027             ErrorExit("DuplicateHandle failed");
1028             goto cleanup;
1029         }
1030
1031         CloseHandle(hChildStdinWr);
1032         hChildStdinWr = INVALID_HANDLE_VALUE;
1033     }
1034     // spawn program with redirected handles as appropriate
1035     bpipe->worker_pid = (pid_t)
1036         CreateChildProcess(prog,             // commandline
1037                            hChildStdinRd,    // stdin HANDLE
1038                            hChildStdoutWr,   // stdout HANDLE
1039                            hChildStdoutWr);  // stderr HANDLE
1040
1041     if ((HANDLE) bpipe->worker_pid == INVALID_HANDLE_VALUE)
1042         goto cleanup;
1043
1044     bpipe->wait = wait;
1045     bpipe->worker_stime = time(NULL);
1046
1047     if (mode_read) {
1048         CloseHandle(hChildStdoutWr); // close our write side so when
1049                                      // process terminates we can
1050                                      // detect eof.
1051         // ugly but convert WIN32 HANDLE to FILE*
1052         int rfd = _open_osfhandle((long)hChildStdoutRdDup, O_RDONLY);
1053         if (rfd >= 0) {
1054            bpipe->rfd = _fdopen(rfd, "r");
1055         }
1056     }
1057     if (mode_write) {
1058         CloseHandle(hChildStdinRd); // close our read side so as not
1059                                     // to interfre with child's copy
1060         // ugly but convert WIN32 HANDLE to FILE*
1061         int wfd = _open_osfhandle((long)hChildStdinWrDup, O_WRONLY);
1062         if (wfd >= 0) {
1063            bpipe->wfd = _fdopen(wfd, "w");
1064         }
1065     }
1066
1067     if (wait > 0) {
1068         bpipe->timer_id = start_child_timer(bpipe->worker_pid, wait);
1069     }
1070
1071     return bpipe;
1072
1073 cleanup:
1074
1075     CloseIfValid(hChildStdoutRd);
1076     CloseIfValid(hChildStdoutRdDup);
1077     CloseIfValid(hChildStdinWr);
1078     CloseIfValid(hChildStdinWrDup);
1079
1080     free((void *) bpipe);
1081     errno = b_errno_win32;            /* do GetLastError() for error code */
1082     return NULL;
1083 }
1084
1085 #endif //HAVE_MINGW
1086
1087 int
1088 kill(int pid, int signal)
1089 {
1090     int rval = 0;
1091     if (!TerminateProcess((HANDLE)pid, (UINT) signal)) {
1092         rval = -1;
1093         errno = b_errno_win32;
1094     }
1095     CloseHandle((HANDLE)pid);
1096     return rval;
1097 }
1098
1099 #ifndef HAVE_MINGW
1100
1101 int
1102 close_bpipe(BPIPE *bpipe)
1103 {
1104     int rval = 0;
1105     if (bpipe->rfd) fclose(bpipe->rfd);
1106     if (bpipe->wfd) fclose(bpipe->wfd);
1107
1108     if (bpipe->wait) {
1109         int remaining_wait = bpipe->wait;
1110         do {
1111             DWORD exitCode;
1112             if (!GetExitCodeProcess((HANDLE)bpipe->worker_pid, &exitCode)) {
1113                 const char *err = errorString();
1114                 rval = b_errno_win32;
1115                 d_msg(__FILE__, __LINE__, 0,
1116                       "GetExitCode error %s\n", err);
1117                 LocalFree((void *)err);
1118                 break;
1119             }
1120
1121             if (exitCode == STILL_ACTIVE) {
1122                 bmicrosleep(1, 0);             /* wait one second */
1123                 remaining_wait--;
1124             }
1125             else break;
1126         } while(remaining_wait);
1127         rval = ETIME;                 /* timed out */
1128     }
1129
1130     if (bpipe->timer_id) {
1131         stop_child_timer(bpipe->timer_id);
1132     }
1133     free((void *)bpipe);
1134     return rval;
1135 }
1136
1137 int
1138 close_wpipe(BPIPE *bpipe)
1139 {
1140     int stat = 1;
1141
1142     if (bpipe->wfd) {
1143         fflush(bpipe->wfd);
1144         if (fclose(bpipe->wfd) != 0) {
1145             stat = 0;
1146         }
1147         bpipe->wfd = NULL;
1148     }
1149     return stat;
1150 }
1151
1152 #include "findlib/find.h"
1153
1154 int
1155 utime(const char *fname, struct utimbuf *times)
1156 {
1157     FILETIME acc, mod;
1158     char tmpbuf[1024];
1159
1160     cygwin_conv_to_win32_path(fname, tmpbuf);
1161
1162     cvt_utime_to_ftime(times->actime, acc);
1163     cvt_utime_to_ftime(times->modtime, mod);
1164
1165     HANDLE h = CreateFile(tmpbuf,
1166                           FILE_WRITE_ATTRIBUTES,
1167                           FILE_SHARE_WRITE,
1168                           NULL,
1169                           OPEN_EXISTING,
1170                           0,
1171                           NULL);
1172
1173     if (h == INVALID_HANDLE_VALUE) {
1174         const char *err = errorString();
1175         d_msg(__FILE__, __LINE__, 99,
1176               "Cannot open file for utime(%s,...):%s\n", tmpbuf, err);
1177         LocalFree((void *)err);
1178         errno = b_errno_win32;
1179         return -1;
1180     }
1181
1182     int rval = SetFileTime(h, NULL, &acc, &mod) ? 0 : -1;
1183     CloseHandle(h);
1184     if (rval == -1) {
1185        errno = b_errno_win32;
1186     }
1187     return rval;
1188 }
1189
1190 #if USE_WIN32_COMPAT_IO
1191
1192 int
1193 open(const char *file, int flags, int mode)
1194 {
1195     return _open(file, flags|_O_BINARY, mode);
1196
1197 }
1198
1199 /*
1200  * Note, this works only for a file. If you want
1201  *   to close a socket, use closesocket(). 
1202  *   Bacula has been modified in src/lib/bnet.c
1203  *   to use closesocket().
1204  */
1205 int
1206 close(int fd)
1207 {
1208     return _close(fd);
1209 }
1210
1211 #ifndef HAVE_WXCONSOLE
1212 ssize_t
1213 read(int fd, void *buf, ssize_t len)
1214 {
1215     return _read(fd, buf, (size_t)len);
1216 }
1217
1218 ssize_t
1219 write(int fd, const void *buf, ssize_t len)
1220 {
1221     return _write(fd, buf, (size_t)len);
1222 }
1223 #endif
1224
1225 off_t
1226 lseek(int fd, off_t offset, int whence)
1227 {
1228     return _lseeki64(fd, offset, whence);
1229 }
1230
1231 int
1232 dup2(int fd1, int fd2)
1233 {
1234     return _dup2(fd1, fd2);
1235 }
1236 #else
1237 int
1238 open(const char *file, int flags, int mode)
1239 {
1240     DWORD access = 0;
1241     DWORD shareMode = 0;
1242     DWORD create = 0;
1243     DWORD msflags = 0;
1244     HANDLE foo;
1245     const char *remap = file;
1246
1247     if (flags & O_WRONLY) access = GENERIC_WRITE;
1248     else if (flags & O_RDWR) access = GENERIC_READ|GENERIC_WRITE;
1249     else access = GENERIC_READ;
1250
1251     if (flags & O_CREAT) create = CREATE_NEW;
1252     else create = OPEN_EXISTING;
1253
1254     if (flags & O_TRUNC) create = TRUNCATE_EXISTING;
1255
1256     if (!(flags & O_EXCL))
1257         shareMode = FILE_SHARE_DELETE|FILE_SHARE_READ|FILE_SHARE_WRITE;
1258
1259     if (flags & O_APPEND) {
1260         printf("open...APPEND not implemented yet.");
1261         exit(-1);
1262     }
1263
1264     foo = CreateFile(file, access, shareMode, NULL, create, msflags, NULL);
1265     if (INVALID_HANDLE_VALUE == foo) {
1266         errno = b_errno_win32;
1267         return(int) -1;
1268     }
1269     return (int)foo;
1270
1271 }
1272
1273
1274 int
1275 close(int fd)
1276 {
1277     if (!CloseHandle((HANDLE)fd)) {
1278         errno = b_errno_win32;
1279         return -1;
1280     }
1281
1282     return 0;
1283 }
1284
1285 ssize_t
1286 write(int fd, const void *data, ssize_t len)
1287 {
1288     BOOL status;
1289     DWORD bwrite;
1290     status = WriteFile((HANDLE)fd, data, len, &bwrite, NULL);
1291     if (status) return bwrite;
1292     errno = b_errno_win32;
1293     return -1;
1294 }
1295
1296
1297 ssize_t
1298 read(int fd, void *data, ssize_t len)
1299 {
1300     BOOL status;
1301     DWORD bread;
1302
1303     status = ReadFile((HANDLE)fd, data, len, &bread, NULL);
1304     if (status) return bread;
1305     errno = b_errno_win32;
1306     return -1;
1307 }
1308
1309 off_t
1310 lseek(int fd, off_t offset, int whence)
1311 {
1312     DWORD method = 0;
1313     DWORD val;
1314     switch (whence) {
1315     case SEEK_SET :
1316         method = FILE_BEGIN;
1317         break;
1318     case SEEK_CUR:
1319         method = FILE_CURRENT;
1320         break;
1321     case SEEK_END:
1322         method = FILE_END;
1323         break;
1324     default:
1325         errno = EINVAL;
1326         return -1;
1327     }
1328
1329     if ((val=SetFilePointer((HANDLE)fd, (DWORD)offset, NULL, method)) == INVALID_SET_FILE_POINTER) {
1330        errno = b_errno_win32;
1331        return -1;
1332     }
1333     /* ***FIXME*** I doubt this works right */
1334     return val;
1335 }
1336
1337 int
1338 dup2(int, int)
1339 {
1340     errno = ENOSYS;
1341     return -1;
1342 }
1343
1344
1345 #endif
1346
1347 #endif //HAVE_MINGW
1348
1349 #ifdef HAVE_MINGW
1350 /* syslog function, added by Nicolas Boichat */
1351 void closelog() {}
1352 #endif //HAVE_MINGW