/*
* Record, and label definitions for Bacula
* media data format.
*
* Kern Sibbald, MM
*
* Version $Id: record.h 4992 2007-06-07 14:46:43Z kerns $
*
*/
/*
Bacula® - The Network Backup Solution
Copyright (C) 2000-2006 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 John Walker.
The licensor of Bacula is the Free Software Foundation Europe
(FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
Switzerland, email:ftf@fsfeurope.org.
*/
#ifndef __RECORD_H
#define __RECORD_H 1
/* Return codes from read_device_volume_label() */
enum {
VOL_NOT_READ = 1, /* Volume label not read */
VOL_OK, /* volume name OK */
VOL_NO_LABEL, /* volume not labeled */
VOL_IO_ERROR, /* volume I/O error */
VOL_NAME_ERROR, /* Volume name mismatch */
VOL_CREATE_ERROR, /* Error creating label */
VOL_VERSION_ERROR, /* Bacula version error */
VOL_LABEL_ERROR, /* Bad label type */
VOL_NO_MEDIA /* Hard error -- no media present */
};
/* See block.h for RECHDR_LENGTH */
/*
* This is the Media structure for a record header.
* NB: when it is written it is serialized.
uint32_t VolSessionId;
uint32_t VolSessionTime;
* The above 8 bytes are only written in a BB01 block, BB02
* and later blocks contain these values in the block header
* rather than the record header.
int32_t FileIndex;
int32_t Stream;
uint32_t data_len;
*/
/* Record state bit definitions */
#define REC_NO_HEADER (1<<0) /* No header read */
#define REC_PARTIAL_RECORD (1<<1) /* returning partial record */
#define REC_BLOCK_EMPTY (1<<2) /* not enough data in block */
#define REC_NO_MATCH (1<<3) /* No match on continuation data */
#define REC_CONTINUATION (1<<4) /* Continuation record found */
#define REC_ISTAPE (1<<5) /* Set if device is tape */
#define is_partial_record(r) ((r)->state & REC_PARTIAL_RECORD)
#define is_block_empty(r) ((r)->state & REC_BLOCK_EMPTY)
/*
* DEV_RECORD for reading and writing records.
* It consists of a Record Header, and the Record Data
*
* This is the memory structure for the record header.
*/
struct BSR; /* satisfy forward reference */
struct DEV_RECORD {
dlink link; /* link for chaining in read_record.c */
/* File and Block are always returned during reading
* and writing records.
*/
uint32_t File; /* File number */
uint32_t Block; /* Block number */
uint32_t VolSessionId; /* sequential id within this session */
uint32_t VolSessionTime; /* session start time */
int32_t FileIndex; /* sequential file number */
int32_t Stream; /* stream number */
uint32_t data_len; /* current record length */
uint32_t remainder; /* remaining bytes to read/write */
uint32_t state; /* state bits */
BSR *bsr; /* pointer to bsr that matched */
uint8_t ser_buf[WRITE_RECHDR_LENGTH]; /* serialized record header goes here */
POOLMEM *data; /* Record data. This MUST be a memory pool item */
int32_t match_stat; /* bsr match status */
};
/*
* Values for LabelType that are put into the FileIndex field
* Note, these values are negative to distinguish them
* from user records where the FileIndex is forced positive.
*/
#define PRE_LABEL -1 /* Vol label on unwritten tape */
#define VOL_LABEL -2 /* Volume label first file */
#define EOM_LABEL -3 /* Writen at end of tape */
#define SOS_LABEL -4 /* Start of Session */
#define EOS_LABEL -5 /* End of Session */
#define EOT_LABEL -6 /* End of physical tape (2 eofs) */
/*
* Volume Label Record. This is the in-memory definition. The
* tape definition is defined in the serialization code itself
* ser_volume_label() and unser_volume_label() and is slightly different.
*/
struct Volume_Label {
/*
* The first items in this structure are saved
* in the DEVICE buffer, but are not actually written
* to the tape.
*/
int32_t LabelType; /* This is written in header only */
uint32_t LabelSize; /* length of serialized label */
/*
* The items below this line are stored on
* the tape
*/
char Id[32]; /* Bacula Immortal ... */
uint32_t VerNum; /* Label version number */
/* VerNum <= 10 */
float64_t label_date; /* Date tape labeled */
float64_t label_time; /* Time tape labeled */
/* VerNum >= 11 */
btime_t label_btime; /* tdate tape labeled */
btime_t write_btime; /* tdate tape written */
/* Unused with VerNum >= 11 */
float64_t write_date; /* Date this label written */
float64_t write_time; /* Time this label written */
char VolumeName[MAX_NAME_LENGTH]; /* Volume name */
char PrevVolumeName[MAX_NAME_LENGTH]; /* Previous Volume Name */
char PoolName[MAX_NAME_LENGTH]; /* Pool name */
char PoolType[MAX_NAME_LENGTH]; /* Pool type */
char MediaType[MAX_NAME_LENGTH]; /* Type of this media */
char HostName[MAX_NAME_LENGTH]; /* Host name of writing computer */
char LabelProg[50]; /* Label program name */
char ProgVersion[50]; /* Program version */
char ProgDate[50]; /* Program build date/time */
};
#define SER_LENGTH_Volume_Label 1024 /* max serialised length of volume label */
#define SER_LENGTH_Session_Label 1024 /* max serialised length of session label */
typedef struct Volume_Label VOLUME_LABEL;
/*
* Session Start/End Label
* This record is at the beginning and end of each session
*/
struct Session_Label {
char Id[32]; /* Bacula Immortal ... */
uint32_t VerNum; /* Label version number */
uint32_t JobId; /* Job id */
uint32_t VolumeIndex; /* Sequence no of volume for this job */
/* VerNum >= 11 */
btime_t write_btime; /* Tdate this label written */
/* VerNum < 11 */
float64_t write_date; /* Date this label written */
/* Unused VerNum >= 11 */
float64_t write_time; /* Time this label written */
char PoolName[MAX_NAME_LENGTH]; /* Pool name */
char PoolType[MAX_NAME_LENGTH]; /* Pool type */
char JobName[MAX_NAME_LENGTH]; /* base Job name */
char ClientName[MAX_NAME_LENGTH];
char Job[MAX_NAME_LENGTH]; /* Unique name of this Job */
char FileSetName[MAX_NAME_LENGTH];
char FileSetMD5[MAX_NAME_LENGTH];
uint32_t JobType;
uint32_t JobLevel;
/* The remainder are part of EOS label only */
uint32_t JobFiles;
uint64_t JobBytes;
uint32_t StartBlock;
uint32_t EndBlock;
uint32_t StartFile;
uint32_t EndFile;
uint32_t JobErrors;
uint32_t JobStatus; /* Job status */
};
typedef struct Session_Label SESSION_LABEL;
#define SERIAL_BUFSIZE 1024 /* volume serialisation buffer size */
#endif
syntax highlighted by Code2HTML, v. 0.9.1