]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/bvfs.h
Fix bvfs queries
[bacula/bacula] / bacula / src / cats / bvfs.h
index ee7be97abd498b417625306afb6eb6d3774a36a2..a9bcf5f2fa628b30a499d3ea0ed09b642215ce3f 100644 (file)
@@ -1,37 +1,27 @@
 /*
-   Bacula® - The Network Backup Solution
-
-   Copyright (C) 2000-2009 Free Software Foundation Europe e.V.
-
-   The main author of Bacula is Kern Sibbald, with contributions from
-   many others, a complete list can be found in the file AUTHORS.
-   This program is Free Software; you can redistribute it and/or
-   modify it under the terms of version two of the GNU General Public
-   License as published by the Free Software Foundation and included
-   in the file LICENSE.
-
-   This program is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.
-
-   Bacula® is a registered trademark of Kern Sibbald.
-   The licensor of Bacula is the Free Software Foundation Europe
-   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
-   Switzerland, email:ftf@fsfeurope.org.
-*/
+   Bacula(R) - The Network Backup Solution
+
+   Copyright (C) 2000-2017 Kern Sibbald
+
+   The original author of Bacula is Kern Sibbald, with contributions
+   from many others, a complete list can be found in the file AUTHORS.
 
+   You may use this file and others of this release according to the
+   license defined in the LICENSE file, which includes the Affero General
+   Public License, v3.0 ("AGPLv3") and some additional permissions and
+   terms pursuant to its AGPLv3 Section 7.
+
+   This notice must be preserved when any source code is
+   conveyed and/or propagated.
+
+   Bacula(R) is a registered trademark of Kern Sibbald.
+*/
 
 #ifndef __BVFS_H_
 #define __BVFS_H_ 1
 
 
-/* 
+/*
  * This object can be use to browse the catalog
  *
  * Bvfs fs;
 typedef enum {
    BVFS_FILE_RECORD  = 'F',
    BVFS_DIR_RECORD   = 'D',
-   BVFS_FILE_VERSION = 'V'
+   BVFS_FILE_VERSION = 'V',
+   BVFS_VOLUME_LIST  = 'L',
+   BVFS_DELTA_RECORD = 'd',
 } bvfs_handler_type;
 
 typedef enum {
-   BVFS_Type    = 0,            /* Could be D, F, V */
-   BVFS_PathId  = 1, 
+   BVFS_Type    = 0,            /* Could be D, F, V, L */
+   BVFS_PathId  = 1,
    BVFS_FilenameId = 2,
 
-   BVFS_Name    = 3,
+   BVFS_Name    = 3,            /* Can be empty for File version */
    BVFS_JobId   = 4,
 
    BVFS_LStat   = 5,            /* Can be empty for missing directories */
    BVFS_FileId  = 6,            /* Can be empty for missing directories */
 
+   /* Only if Path record */
+   BVFS_FileIndex = 7,
+
    /* Only if File Version record */
-   BVFS_Md5     = 3,
-   BVFS_VolName = 4,
-   BVFS_VolInchanger = 5
+   BVFS_Md5     = 7,
+   BVFS_VolName = 8,
+   BVFS_VolInchanger = 9,
+
+   /* Only if Delta record */
+   BVFS_DeltaSeq = 6,
+   BVFS_JobTDate = 7
 } bvfs_row_index;
 
 class Bvfs {
 
 public:
-   Bvfs(JCR *j, B_DB *mdb);
+   Bvfs(JCR *j, BDB *mdb);
    virtual ~Bvfs();
 
-   void set_jobid(JobId_t id) {
-      Mmsg(jobids, "%lld", (uint64_t)id);
-   }
+   void set_compute_delta(bool val) {
+      compute_delta = val;
+   };
+
+   /* Return the number of jobids after the filter */
+   int set_jobid(JobId_t id);
+   int set_jobids(char *ids);
 
-   void set_jobids(char *ids) {
-      pm_strcpy(jobids, ids);
+   char *get_jobids() {
+      return jobids;
    }
 
    void set_limit(uint32_t max) {
@@ -89,9 +92,15 @@ public:
    }
 
    void set_pattern(char *p) {
-      uint32_t len = strlen(p)*2+1;
-      pattern = check_pool_memory_size(pattern, len);
-      db_escape_string(jcr, db, pattern, p, len);
+      uint32_t len = strlen(p);
+      pattern = check_pool_memory_size(pattern, len*2+1);
+      db->bdb_escape_string(jcr, pattern, p, len);
+   }
+
+   void set_filename(char *p) {
+      uint32_t len = strlen(p);
+      filename = check_pool_memory_size(filename, len*2+1);
+      db->bdb_escape_string(jcr, filename, p, len);
    }
 
    /* Get the root point */
@@ -100,12 +109,9 @@ public:
    /* It's much better to access Path though their PathId, it
     * avoids mistakes with string encoding
     */
-   void ch_dir(DBId_t pathid) {
-      reset_offset();
-      pwd_id = pathid;
-   }
+   bool ch_dir(DBId_t pathid);
 
-   /* 
+   /*
     * Returns true if the directory exists
     */
    bool ch_dir(const char *path);
@@ -113,26 +119,68 @@ public:
    bool ls_files();             /* Returns true if we have more files to read */
    bool ls_dirs();              /* Returns true if we have more dir to read */
    void ls_special_dirs();      /* get . and .. */
-   void get_all_file_versions(DBId_t pathid, DBId_t fnid, const char *client);
+   void get_all_file_versions(DBId_t pathid, FileId_t fnid, const char *client);
 
    void update_cache();
 
-   void set_see_all_version(bool val) {
-      see_all_version = val;
+   /* bfileview */
+   void fv_update_cache();
+
+   void set_see_all_versions(bool val) {
+      see_all_versions = val;
    }
 
    void set_see_copies(bool val) {
       see_copies = val;
    }
 
+   DBId_t get_dir_filenameid();
+
+   int filter_jobid();         /* Call after set_username, returns the number of jobids */
+
+   void set_username(char *user) {
+      if (user) {
+         username = bstrdup(user);
+      }
+   };
+
+   char *escape_list(alist *list);
+
+   bool copy_acl(alist *list) {
+      if (!list ||
+          (list->size() > 0 &&
+           (strcasecmp((char *)list->get(0), "*all*") == 0)))
+      {
+         return false;
+      }
+      return true;
+   };
+
+   /* Keep a pointer to various ACLs */
+   void set_job_acl(alist *lst) {
+      job_acl = copy_acl(lst)?lst:NULL;
+      use_acl = true;
+   };
+   void set_fileset_acl(alist *lst) {
+      fileset_acl = copy_acl(lst)?lst:NULL;
+      use_acl = true;
+   };
+   void set_client_acl(alist *lst) {
+      client_acl = copy_acl(lst)?lst:NULL;
+      use_acl = true;
+   };
+   void set_pool_acl(alist *lst) {
+      pool_acl = copy_acl(lst)?lst:NULL;
+      use_acl = true;
+   };
    void set_handler(DB_RESULT_HANDLER *h, void *ctx) {
       list_entries = h;
       user_data = ctx;
-   }
+   };
 
    DBId_t get_pwd() {
       return pwd_id;
-   }
+   };
 
    ATTR *get_attr() {
       return attr;
@@ -150,29 +198,85 @@ public:
       offset+=limit;
    }
 
+   /* Clear all cache */
+   void clear_cache();
+
+   /* Compute restore list */
+   bool compute_restore_list(char *fileid, char *dirid, char *hardlink,
+                             char *output_table);
+
+   /* Drop previous restore list */
+   bool drop_restore_list(char *output_table);
+
    /* for internal use */
    int _handle_path(void *, int, char **);
-   
+
+   /* Handle Delta parts if any */
+   void insert_missing_delta(char *output_table, int64_t *res);
+
+   /* Get a list of volumes */
+   void get_volumes(FileId_t fileid);
+
+   /* Get Delta parts of a file */
+   bool get_delta(FileId_t fileid);
+
+   /* Check if the parent directories are accessible */
+   bool check_path_access(DBId_t pathid);
+
+   /* Check if the full path is authorized by the current set of ACLs */
+   bool check_full_path_access(int nb, sellist *sel, db_list_ctx *toexcl);
+
+   alist *dir_acl;
+
+   int  check_dirs;             /* When it's 1, we check the against directory_acl */
+   bool can_access(struct stat *st);
+   bool can_access_dir(const char *path);
+
 private:
    Bvfs(const Bvfs &);               /* prohibit pass by value */
    Bvfs & operator = (const Bvfs &); /* prohibit class assignment */
 
    JCR *jcr;
-   B_DB *db;
+   BDB *db;
    POOLMEM *jobids;
+   char *username;              /* Used with Bweb */
+
+   POOLMEM *prev_dir; /* ls_dirs query returns all versions, take the 1st one */
+   POOLMEM *pattern;
+   POOLMEM *filename;
+
+   POOLMEM *tmp;
+   POOLMEM *escaped_list;
+
+   /* Pointer to Console ACL */
+   alist *job_acl;
+   alist *client_acl;
+   alist *fileset_acl;
+   alist *pool_acl;
+   char  *last_dir_acl;
+
+   ATTR *attr;        /* Can be use by handler to call decode_stat() */
+
    uint32_t limit;
    uint32_t offset;
    uint32_t nb_record;          /* number of records of the last query */
-   POOLMEM *pattern;
    DBId_t pwd_id;               /* Current pathid */
    DBId_t dir_filenameid;       /* special FilenameId where Name='' */
-   POOLMEM *prev_dir; /* ls_dirs query returns all versions, take the 1st one */
-   ATTR *attr;        /* Can be use by handler to call decode_stat() */
 
-   bool see_all_version;
+   bool see_all_versions;
    bool see_copies;
+   bool compute_delta;
 
-   DBId_t get_dir_filenameid();
+   db_list_ctx fileid_to_delete; /* used also by check_path_access */
+   bool need_to_check_permissions();
+   bool use_acl;
+
+   /* bfileview */
+   void fv_get_big_files(int64_t pathid, int64_t min_size, int32_t limit);
+   void fv_update_size_and_count(int64_t pathid, int64_t size, int64_t count);
+   void fv_compute_size_and_count(int64_t pathid, int64_t *size, int64_t *count);
+   void fv_get_current_size_and_count(int64_t pathid, int64_t *size, int64_t *count);
+   void fv_get_size_and_count(int64_t pathid, int64_t *size, int64_t *count);
 
    DB_RESULT_HANDLER *list_entries;
    void *user_data;
@@ -180,9 +284,13 @@ private:
 
 #define bvfs_is_dir(row) ((row)[BVFS_Type][0] == BVFS_DIR_RECORD)
 #define bvfs_is_file(row) ((row)[BVFS_Type][0] == BVFS_FILE_RECORD)
+#define bvfs_is_version(row) ((row)[BVFS_Type][0] == BVFS_FILE_VERSION)
+#define bvfs_is_volume_list(row) ((row)[BVFS_Type][0] == BVFS_VOLUME_LIST)
+#define bvfs_is_delta_list(row) ((row)[BVFS_Type][0] == BVFS_DELTA_RECORD)
 
-void bvfs_update_path_hierarchy_cache(JCR *jcr, B_DB *mdb, char *jobids);
-void bvfs_update_cache(JCR *jcr, B_DB *mdb);
+void bvfs_update_fv_cache(JCR *jcr, BDB *mdb, char *jobids);
+int bvfs_update_path_hierarchy_cache(JCR *jcr, BDB *mdb, char *jobids);
+void bvfs_update_cache(JCR *jcr, BDB *mdb);
 char *bvfs_parent_dir(char *path);
 
 /* Return the basename of the with the trailing /  (update the given string)
@@ -191,5 +299,4 @@ char *bvfs_parent_dir(char *path);
  */
 char *bvfs_basename_dir(char *path);
 
-
 #endif /* __BVFS_H_ */