Click here to Skip to main content
15,868,164 members
Articles / Programming Languages / C#
Article

Reading MTF Backup Files

Rate me:
Please Sign up or sign in to vote.
4.93/5 (12 votes)
4 Apr 2007CPOL2 min read 110.1K   2K   33   23
An article explaning how to read backup files created with the Microsoft Tape Format (MTF) specification.

Screenshot - BackupReader.gif

Introduction

We use the NTBackup utility to backup our files at the office. Recently, one of the backup files turned out to be corrupt. Searcing for a solution, I came upon William T. Kranz's freeware ntbkup utility. Although ntbkup did a great job recovering the backup file, it is a command line utility. So, I decided to write a backup reader with a GUI.

Background

Volume, file, and folder information in a MTF backup file is stored as so called Descriptor Blocks. MTF is a linear file format. Reading a MTF backup file is a straightforward process. A backup file contains Data Set Descriptor Blocks, which are followed by Volume Descriptor Blocks. Volume Descriptor Blocks are followed by Directory Descriptor Blocks, which are in turn followed by File Descriptor Blocks.

Each descriptor block is followed by one or more Data Streams. Data streams are used for various purposes. They can be used for padding, storing checksums, long file/folder names, etc. One or more data streams associated with a file descriptor block typically contain file data.

Using the code

To read a backup file, an implementation creates a new instance of the CBackupReader class, passing the name of the backup file as an argument. Then, a catalog is created using the CCatalogNode class. The CCatalogNode class has a tree structure. The root of the tree is the backup file itself. Its child nodes represent the data sets in the backup file. Each data set node contains one (and only one) volume node. Volume nodes contain folders and files as child nodes. To extract a file from the catalog, one traverses the tree to reach the file and calls the ExtractTo method of the CCatalogNode class.
C#
// Open the backup file
CBackupReader mFile = new CBackupReader(mFileName);
// Read the catalog
CCatalogNode node = mFile.ReadCatalog();
// Extract a node from the catalog
node.ExtractTo(mFile, mTargetPath); 

Limitations

  • Backup Reader was tested with a few relatively small backup files. The largest backup file tested was about 2 GB.
  • Compressed and encrypted archives are not supported.
  • Backup Reader works on Windows archives only. Although descriptor block definitions for other operating systems are included in the source code, they are not tested.
  • Archives that span multiple tapes/disks are not supported.

References

  1. ntbkup - William T. Kranz's freeware backup utility
  2. MTF specification and a Linux backup reader with C source code

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Turkey Turkey
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalthanks for this nice tool. Pin
volkan.ozcelik22-Mar-07 5:18
volkan.ozcelik22-Mar-07 5:18 
GeneralRe: thanks for this nice tool. Pin
Ozgur Ozcitak27-Mar-07 3:28
Ozgur Ozcitak27-Mar-07 3:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.