]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/findlib/bfile.c
Add const for Solaris' C++ compiler
[bacula/bacula] / bacula / src / findlib / bfile.c
index 8c15b961c186e0addc7781930a5826c32b99f63c..b3e75ef241718c59fc5e2922536562df23fccb26 100644 (file)
 #include "bacula.h"
 #include "find.h"
 
-#ifdef HAVE_CYGWIN
+/* ===============================================================
+ * 
+ *           U N I X   AND   W I N D O W S
+ *
+ * ===============================================================
+ */
+
+int is_win32_stream(int stream)
+{
+   switch (stream) {
+   case STREAM_WIN32_DATA:
+   case STREAM_WIN32_GZIP_DATA:
+      return 1;
+   }
+   return 0;
+}
+
+const char *stream_to_ascii(int stream)
+{
+   static char buf[20];
+
+   switch (stream) {
+   case STREAM_GZIP_DATA:
+      return "GZIP data";
+   case STREAM_SPARSE_GZIP_DATA:
+      return "GZIP sparse data";
+   case STREAM_WIN32_DATA:
+      return "Win32 data";
+   case STREAM_WIN32_GZIP_DATA:
+      return "Win32 GZIP data";
+   case STREAM_UNIX_ATTRIBUTES:
+      return "File attributes";
+   case STREAM_FILE_DATA:
+      return "File data";
+   case STREAM_MD5_SIGNATURE:
+      return "MD5 signature";
+   case STREAM_UNIX_ATTRIBUTES_EX:
+      return "Extended attributes";
+   case STREAM_SPARSE_DATA:
+      return "Sparse data";
+   case STREAM_PROGRAM_NAMES:
+      return "Program names";
+   case STREAM_PROGRAM_DATA:
+      return "Program data";
+   case STREAM_SHA1_SIGNATURE:
+      return "SHA1 signature";
+   default:
+      sprintf(buf, "%d", stream);
+      return (const char *)buf;
+   }
+}
+
+
+
+/* ===============================================================
+ * 
+ *           W I N D O W S
+ *
+ * ===============================================================
+ */
+
+#if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
 
 void unix_name_to_win32(POOLMEM **win32_name, char *name);
 extern "C" HANDLE get_osfhandle(int fd);
 
 
+
 void binit(BFILE *bfd)
 {
    bfd->fid = -1;
    bfd->mode = BF_CLOSED;
-   bfd->use_backup_api = p_BackupRead && p_BackupWrite;
+   bfd->use_backup_api = have_win32_api();
    bfd->errmsg = NULL;
    bfd->lpContext = NULL;
    bfd->lerror = 0;
 }
 
 /*
- * Enables/disables using the Backup API (win32_data).
+ * Enables using the Backup API (win32_data).
  *   Returns 1 if function worked
  *   Returns 0 if failed (i.e. do not have Backup API on this machine)
  */
-int set_win32_backup(BFILE *bfd, int enable)
+int set_win32_backup(BFILE *bfd
 {
-   if (!enable) {
-      bfd->use_backup_api = 0;
-      return 1;
-   }
    /* We enable if possible here */
-   bfd->use_backup_api = p_BackupRead && p_BackupWrite;
+   bfd->use_backup_api = have_win32_api();
    return bfd->use_backup_api;
 }
 
-int is_win32_backup(void)
+
+int set_portable_backup(BFILE *bfd)
+{
+   bfd->use_backup_api = 0;
+   return 1;
+}
+
+/*
+ * Return 1 if we are NOT using Win32 BackupWrite() 
+ * return 0 if are
+ */
+int is_portable_backup(BFILE *bfd) 
+{
+   return !bfd->use_backup_api;
+}
+
+int have_win32_api()
 {
    return p_BackupRead && p_BackupWrite;
 }
 
+
+
+/*
+ * Return 1 if we support the stream
+ *       0 if we do not support the stream
+ */
+int is_stream_supported(int stream)
+{
+   /* No Win32 backup on this machine */
+   switch (stream) {
+#ifndef HAVE_LIBZ
+   case STREAM_GZIP_DATA:
+   case STREAM_SPARSE_GZIP_DATA:
+      return 0;
+#endif
+   case STREAM_WIN32_DATA:
+   case STREAM_WIN32_GZIP_DATA:
+      return have_win32_api();
+
+   /* Known streams */
+#ifdef HAVE_LIBZ
+   case STREAM_GZIP_DATA:
+   case STREAM_SPARSE_GZIP_DATA:
+#endif
+   case STREAM_UNIX_ATTRIBUTES:
+   case STREAM_FILE_DATA:
+   case STREAM_MD5_SIGNATURE:
+   case STREAM_UNIX_ATTRIBUTES_EX:
+   case STREAM_SPARSE_DATA:
+   case STREAM_PROGRAM_NAMES:
+   case STREAM_PROGRAM_DATA:
+   case STREAM_SHA1_SIGNATURE:
+   case 0:                           /* compatibility with old tapes */
+      return 1;
+   }
+   return 0;
+}
+
 HANDLE bget_handle(BFILE *bfd)
 {
    return bfd->fh;
@@ -87,7 +199,7 @@ int bopen(BFILE *bfd, const char *fname, int flags, mode_t mode)
         dwaccess = GENERIC_WRITE|FILE_ALL_ACCESS|WRITE_OWNER|WRITE_DAC|ACCESS_SYSTEM_SECURITY;                
         dwflags = FILE_FLAG_BACKUP_SEMANTICS;
       } else {
-        dwaccess = GENERIC_WRITE|FILE_ALL_ACCESS;
+        dwaccess = GENERIC_WRITE;
         dwflags = 0;
       }
       bfd->fh = CreateFile(win32_fname,
@@ -101,10 +213,14 @@ int bopen(BFILE *bfd, const char *fname, int flags, mode_t mode)
 
    } else if (flags & O_WRONLY) {     /* Open existing for write */
       if (bfd->use_backup_api) {
-        dwaccess = FILE_ALL_ACCESS|WRITE_OWNER|WRITE_DAC|ACCESS_SYSTEM_SECURITY;
+#ifdef HAVE_WIN32
+         dwaccess = GENERIC_WRITE|/*FILE_ALL_ACCESS|*/WRITE_OWNER|WRITE_DAC/*|ACCESS_SYSTEM_SECURITY*/;
+#else
+         dwaccess = GENERIC_WRITE|FILE_ALL_ACCESS|WRITE_OWNER|WRITE_DAC|ACCESS_SYSTEM_SECURITY;
+#endif
         dwflags = FILE_FLAG_BACKUP_SEMANTICS;
       } else {
-        dwaccess = FILE_ALL_ACCESS;
+        dwaccess = GENERIC_WRITE;
         dwflags = 0;
       }
       bfd->fh = CreateFile(win32_fname,
@@ -140,6 +256,7 @@ int bopen(BFILE *bfd, const char *fname, int flags, mode_t mode)
    }
    bfd->errmsg = NULL;
    bfd->lpContext = NULL;
+   free_pool_memory(win32_fname);
    return bfd->mode == BF_CLOSED ? -1 : 1;
 }
 
@@ -298,29 +415,87 @@ void binit(BFILE *bfd)
    bfd->fid = -1;
 }
 
-int set_win32_backup(BFILE *bfd, int enable)
+int have_win32_api()
+{ 
+   return 0;                         /* no can do */
+} 
+
+/*
+ * Enables using the Backup API (win32_data).
+ *   Returns 1 if function worked
+ *   Returns 0 if failed (i.e. do not have Backup API on this machine)
+ */
+int set_win32_backup(BFILE *bfd) 
 {
-   return 0;
+   return 0;                         /* no can do */
+}
+
+
+int set_portable_backup(BFILE *bfd)
+{
+   return 1;                         /* no problem */
 }
 
-int is_win32_backup(void)
+/*
+ * Return 1 if we are writing in portable format
+ * return 0 if not
+ */
+int is_portable_backup(BFILE *bfd) 
 {
-   return 0;
+   return 1;                         /* portable by definition */
 }
 
+int is_stream_supported(int stream)
+{
+   /* No Win32 backup on this machine */
+   switch (stream) {
+#ifndef HAVE_LIBZ
+   case STREAM_GZIP_DATA:
+   case STREAM_SPARSE_GZIP_DATA:
+#endif
+   case STREAM_WIN32_DATA:
+   case STREAM_WIN32_GZIP_DATA:
+      return 0;
+
+   /* Known streams */
+#ifdef HAVE_LIBZ
+   case STREAM_GZIP_DATA:
+   case STREAM_SPARSE_GZIP_DATA:
+#endif
+   case STREAM_UNIX_ATTRIBUTES:
+   case STREAM_FILE_DATA:
+   case STREAM_MD5_SIGNATURE:
+   case STREAM_UNIX_ATTRIBUTES_EX:
+   case STREAM_SPARSE_DATA:
+   case STREAM_PROGRAM_NAMES:
+   case STREAM_PROGRAM_DATA:
+   case STREAM_SHA1_SIGNATURE:
+   case 0:                           /* compatibility with old tapes */
+      return 1;
+
+   }
+   return 0;
+}
 
 int bopen(BFILE *bfd, const char *fname, int flags, mode_t mode)
 {
    bfd->fid = open(fname, flags, mode);
    bfd->berrno = errno;
+   Dmsg1(50, "Open file %d\n", bfd->fid);
    return bfd->fid;
 }
 
 int bclose(BFILE *bfd)
 { 
-   int stat = close(bfd->fid);
+   int stat;  
+   Dmsg1(50, "Close file %d\n", bfd->fid);
+   if (bfd->fid == -1) {
+      return 0;
+   }
+   stat = close(bfd->fid);
    bfd->berrno = errno;
    bfd->fid = -1;
+
    return stat;
 }