2017-07-19 16:31:08 +01:00
|
|
|
|
// /***************************************************************************
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : UNIXBFS.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : UnixWare boot filesystem plugin.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Identifies the UnixWare boot filesystem and shows information.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This library 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
|
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// ****************************************************************************/
|
2014-04-17 19:58:14 +00:00
|
|
|
|
|
2012-08-06 21:21:14 +00:00
|
|
|
|
using System;
|
2016-07-21 17:16:08 +01:00
|
|
|
|
using System.Collections.Generic;
|
2012-08-06 21:21:14 +00:00
|
|
|
|
using System.Text;
|
2017-07-19 16:31:08 +01:00
|
|
|
|
using DiscImageChef.CommonTypes;
|
2015-10-18 22:04:03 +01:00
|
|
|
|
using DiscImageChef.Console;
|
2017-12-21 14:30:38 +00:00
|
|
|
|
using DiscImageChef.DiscImages;
|
|
|
|
|
|
using Schemas;
|
2015-10-18 22:04:03 +01:00
|
|
|
|
|
2016-07-21 16:15:39 +01:00
|
|
|
|
namespace DiscImageChef.Filesystems
|
2012-08-06 21:21:14 +00:00
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
|
// Information from the Linux kernel
|
2017-07-01 03:26:08 +01:00
|
|
|
|
public class BFS : Filesystem
|
2014-04-14 02:29:13 +00:00
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
|
const uint BFS_MAGIC = 0x1BADFACE;
|
2012-08-06 21:21:14 +00:00
|
|
|
|
|
2015-10-05 20:04:05 +01:00
|
|
|
|
public BFS()
|
2012-08-06 21:21:14 +00:00
|
|
|
|
{
|
2014-04-14 02:29:13 +00:00
|
|
|
|
Name = "UNIX Boot filesystem";
|
2017-12-22 08:43:22 +00:00
|
|
|
|
PluginUuid = new Guid("1E6E0DA6-F7E4-494C-80C6-CB5929E96155");
|
2017-06-06 21:23:20 +01:00
|
|
|
|
CurrentEncoding = Encoding.GetEncoding("iso-8859-15");
|
2012-08-06 21:21:14 +00:00
|
|
|
|
}
|
2014-04-14 02:29:13 +00:00
|
|
|
|
|
2017-10-12 23:54:02 +01:00
|
|
|
|
public BFS(Encoding encoding)
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = "UNIX Boot filesystem";
|
2017-12-22 08:43:22 +00:00
|
|
|
|
PluginUuid = new Guid("1E6E0DA6-F7E4-494C-80C6-CB5929E96155");
|
|
|
|
|
|
CurrentEncoding = encoding ?? Encoding.GetEncoding("iso-8859-15");
|
2017-10-12 23:54:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-21 14:30:38 +00:00
|
|
|
|
public BFS(ImagePlugin imagePlugin, Partition partition, Encoding encoding)
|
2016-07-27 13:32:45 +01:00
|
|
|
|
{
|
|
|
|
|
|
Name = "UNIX Boot filesystem";
|
2017-12-22 08:43:22 +00:00
|
|
|
|
PluginUuid = new Guid("1E6E0DA6-F7E4-494C-80C6-CB5929E96155");
|
|
|
|
|
|
CurrentEncoding = encoding ?? Encoding.GetEncoding("iso-8859-15");
|
2016-07-27 13:32:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-21 14:30:38 +00:00
|
|
|
|
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
2014-04-14 02:29:13 +00:00
|
|
|
|
{
|
2017-12-20 17:26:28 +00:00
|
|
|
|
if(2 + partition.Start >= partition.End) return false;
|
2014-07-09 19:49:14 +01:00
|
|
|
|
|
2016-07-28 22:25:26 +01:00
|
|
|
|
uint magic;
|
2012-08-06 21:21:14 +00:00
|
|
|
|
|
2017-07-19 16:37:11 +01:00
|
|
|
|
magic = BitConverter.ToUInt32(imagePlugin.ReadSector(0 + partition.Start), 0);
|
2014-04-14 02:29:13 +00:00
|
|
|
|
|
|
|
|
|
|
return magic == BFS_MAGIC;
|
|
|
|
|
|
}
|
2012-08-06 21:21:14 +00:00
|
|
|
|
|
2017-12-24 02:37:41 +00:00
|
|
|
|
public override void GetInformation(ImagePlugin imagePlugin, Partition partition, out string information)
|
2014-04-14 02:29:13 +00:00
|
|
|
|
{
|
|
|
|
|
|
information = "";
|
2016-04-19 02:11:47 +01:00
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
|
StringBuilder sb = new StringBuilder();
|
2017-12-22 08:43:22 +00:00
|
|
|
|
byte[] bfsSbSector = imagePlugin.ReadSector(0 + partition.Start);
|
|
|
|
|
|
byte[] sbStrings = new byte[6];
|
|
|
|
|
|
|
|
|
|
|
|
BFSSuperBlock bfsSb = new BFSSuperBlock
|
|
|
|
|
|
{
|
|
|
|
|
|
s_magic = BitConverter.ToUInt32(bfsSbSector, 0x00),
|
|
|
|
|
|
s_start = BitConverter.ToUInt32(bfsSbSector, 0x04),
|
|
|
|
|
|
s_end = BitConverter.ToUInt32(bfsSbSector, 0x08),
|
|
|
|
|
|
s_from = BitConverter.ToUInt32(bfsSbSector, 0x0C),
|
|
|
|
|
|
s_to = BitConverter.ToUInt32(bfsSbSector, 0x10),
|
|
|
|
|
|
s_bfrom = BitConverter.ToInt32(bfsSbSector, 0x14),
|
|
|
|
|
|
s_bto = BitConverter.ToInt32(bfsSbSector, 0x18)
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Array.Copy(bfsSbSector, 0x1C, sbStrings, 0, 6);
|
|
|
|
|
|
bfsSb.s_fsname = StringHandlers.CToString(sbStrings, CurrentEncoding);
|
|
|
|
|
|
Array.Copy(bfsSbSector, 0x22, sbStrings, 0, 6);
|
|
|
|
|
|
bfsSb.s_volume = StringHandlers.CToString(sbStrings, CurrentEncoding);
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_magic: 0x{0:X8}", bfsSb.s_magic);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_start: 0x{0:X8}", bfsSb.s_start);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_end: 0x{0:X8}", bfsSb.s_end);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_from: 0x{0:X8}", bfsSb.s_from);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_to: 0x{0:X8}", bfsSb.s_to);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_bfrom: 0x{0:X8}", bfsSb.s_bfrom);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_bto: 0x{0:X8}", bfsSb.s_bto);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_fsname: 0x{0}", bfsSb.s_fsname);
|
|
|
|
|
|
DicConsole.DebugWriteLine("BFS plugin", "bfs_sb.s_volume: 0x{0}", bfsSb.s_volume);
|
2012-08-06 21:21:14 +00:00
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
|
sb.AppendLine("UNIX Boot filesystem");
|
2017-12-22 08:43:22 +00:00
|
|
|
|
sb.AppendFormat("Volume goes from byte {0} to byte {1}, for {2} bytes", bfsSb.s_start, bfsSb.s_end,
|
|
|
|
|
|
bfsSb.s_end - bfsSb.s_start).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("Filesystem name: {0}", bfsSb.s_fsname).AppendLine();
|
|
|
|
|
|
sb.AppendFormat("Volume name: {0}", bfsSb.s_volume).AppendLine();
|
|
|
|
|
|
|
|
|
|
|
|
XmlFsType = new FileSystemType();
|
|
|
|
|
|
XmlFsType.Type = "BFS";
|
|
|
|
|
|
XmlFsType.VolumeName = bfsSb.s_volume;
|
2017-12-26 02:51:10 +00:00
|
|
|
|
XmlFsType.ClusterSize = (int)imagePlugin.ImageInfo.SectorSize;
|
2017-12-22 08:43:22 +00:00
|
|
|
|
XmlFsType.Clusters = (long)(partition.End - partition.Start + 1);
|
2015-12-05 17:10:27 +00:00
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
|
information = sb.ToString();
|
|
|
|
|
|
}
|
2012-08-06 21:21:14 +00:00
|
|
|
|
|
2016-07-21 17:16:08 +01:00
|
|
|
|
public override Errno Mount()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-07-22 00:43:22 +01:00
|
|
|
|
public override Errno Mount(bool debug)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-07-21 17:16:08 +01:00
|
|
|
|
public override Errno Unmount()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno ListXAttr(string path, ref List<string> xattrs)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno GetXattr(string path, string xattr, ref byte[] buf)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno Read(string path, long offset, long size, ref byte[] buf)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno ReadDir(string path, ref List<string> contents)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno StatFs(ref FileSystemInfo stat)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno Stat(string path, ref FileEntryInfo stat)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override Errno ReadLink(string path, ref string dest)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Errno.NotImplemented;
|
|
|
|
|
|
}
|
2017-12-24 02:37:41 +00:00
|
|
|
|
|
|
|
|
|
|
struct BFSSuperBlock
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>0x00, 0x1BADFACE</summary>
|
|
|
|
|
|
public uint s_magic;
|
|
|
|
|
|
/// <summary>0x04, start in bytes of volume</summary>
|
|
|
|
|
|
public uint s_start;
|
|
|
|
|
|
/// <summary>0x08, end in bytes of volume</summary>
|
|
|
|
|
|
public uint s_end;
|
|
|
|
|
|
/// <summary>0x0C, unknown :p</summary>
|
|
|
|
|
|
public uint s_from;
|
|
|
|
|
|
/// <summary>0x10, unknown :p</summary>
|
|
|
|
|
|
public uint s_to;
|
|
|
|
|
|
/// <summary>0x14, unknown :p</summary>
|
|
|
|
|
|
public int s_bfrom;
|
|
|
|
|
|
/// <summary>0x18, unknown :p</summary>
|
|
|
|
|
|
public int s_bto;
|
|
|
|
|
|
/// <summary>0x1C, 6 bytes, filesystem name</summary>
|
|
|
|
|
|
public string s_fsname;
|
|
|
|
|
|
/// <summary>0x22, 6 bytes, volume name</summary>
|
|
|
|
|
|
public string s_volume;
|
|
|
|
|
|
}
|
2014-04-14 02:29:13 +00:00
|
|
|
|
}
|
2014-04-14 01:14:20 +00:00
|
|
|
|
}
|