2017-05-19 20:28:49 +01:00
|
|
|
// /***************************************************************************
|
2016-07-22 02:18:29 +01:00
|
|
|
// The Disc Image Chef
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Ls.cs
|
2016-07-28 18:13:49 +01:00
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2016-07-22 02:18:29 +01:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Component : Verbs.
|
2016-07-22 02:18:29 +01:00
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Implements the 'ls' verb.
|
2016-07-22 02:18:29 +01:00
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-12-19 03:50:57 +00:00
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2016-07-22 02:18:29 +01:00
|
|
|
// ****************************************************************************/
|
2016-07-28 18:13:49 +01:00
|
|
|
|
2016-07-22 02:18:29 +01:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2017-10-12 23:54:02 +01:00
|
|
|
using System.Text;
|
2017-07-19 16:31:08 +01:00
|
|
|
using DiscImageChef.CommonTypes;
|
2016-07-22 02:18:29 +01:00
|
|
|
using DiscImageChef.Console;
|
2017-05-27 14:54:15 +01:00
|
|
|
using DiscImageChef.Core;
|
2016-07-22 02:18:29 +01:00
|
|
|
using DiscImageChef.Filesystems;
|
2016-09-05 17:37:31 +01:00
|
|
|
using DiscImageChef.Filters;
|
2016-07-22 02:18:29 +01:00
|
|
|
using DiscImageChef.ImagePlugins;
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Commands
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
public static class Ls
|
2016-07-22 02:18:29 +01:00
|
|
|
{
|
|
|
|
|
public static void doLs(LsOptions options)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.DebugWriteLine("Ls command", "--debug={0}", options.Debug);
|
|
|
|
|
DicConsole.DebugWriteLine("Ls command", "--verbose={0}", options.Verbose);
|
|
|
|
|
DicConsole.DebugWriteLine("Ls command", "--input={0}", options.InputFile);
|
|
|
|
|
|
2016-09-05 17:37:31 +01:00
|
|
|
FiltersList filtersList = new FiltersList();
|
|
|
|
|
Filter inputFilter = filtersList.GetFilter(options.InputFile);
|
|
|
|
|
|
|
|
|
|
if(inputFilter == null)
|
2016-07-22 02:18:29 +01:00
|
|
|
{
|
2016-09-05 17:37:31 +01:00
|
|
|
DicConsole.ErrorWriteLine("Cannot open specified file.");
|
2016-07-22 02:18:29 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2017-10-12 23:54:02 +01:00
|
|
|
|
|
|
|
|
Encoding encoding = null;
|
|
|
|
|
|
|
|
|
|
if(options.EncodingName != null)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
encoding = Claunia.Encoding.Encoding.GetEncoding(options.EncodingName);
|
2017-12-19 20:33:03 +00:00
|
|
|
if(options.Verbose) DicConsole.VerboseWriteLine("Using encoding for {0}.", encoding.EncodingName);
|
2017-10-12 23:54:02 +01:00
|
|
|
}
|
|
|
|
|
catch(ArgumentException)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.ErrorWriteLine("Specified encoding is not supported.");
|
|
|
|
|
encoding = null;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 02:18:29 +01:00
|
|
|
PluginBase plugins = new PluginBase();
|
2017-10-12 23:54:02 +01:00
|
|
|
plugins.RegisterAllPlugins(encoding);
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
List<string> id_plugins;
|
|
|
|
|
Filesystem _plugin;
|
|
|
|
|
ImagePlugin _imageFormat;
|
|
|
|
|
Errno error;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-09-05 17:37:31 +01:00
|
|
|
_imageFormat = ImageFormat.Detect(inputFilter);
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
if(_imageFormat == null)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Image format not identified, not proceeding with analysis.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if(options.Verbose)
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.VerboseWriteLine("Image format identified by {0} ({1}).", _imageFormat.Name,
|
|
|
|
|
_imageFormat.PluginUUID);
|
|
|
|
|
else DicConsole.WriteLine("Image format identified by {0}.", _imageFormat.Name);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-09-05 17:37:31 +01:00
|
|
|
if(!_imageFormat.OpenImage(inputFilter))
|
2016-07-22 02:18:29 +01:00
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("Unable to open image format");
|
|
|
|
|
DicConsole.WriteLine("No error given");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DicConsole.DebugWriteLine("Ls command", "Correctly opened image file.");
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.DebugWriteLine("Ls command", "Image without headers is {0} bytes.",
|
|
|
|
|
_imageFormat.GetImageSize());
|
2016-07-22 02:18:29 +01:00
|
|
|
DicConsole.DebugWriteLine("Ls command", "Image has {0} sectors.", _imageFormat.GetSectors());
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.DebugWriteLine("Ls command", "Image identifies disk type as {0}.",
|
|
|
|
|
_imageFormat.GetMediaType());
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
Core.Statistics.AddMediaFormat(_imageFormat.GetImageFormat());
|
|
|
|
|
Core.Statistics.AddMedia(_imageFormat.ImageInfo.mediaType, false);
|
2016-09-05 17:37:31 +01:00
|
|
|
Core.Statistics.AddFilter(inputFilter.Name);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
catch(Exception ex)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.ErrorWriteLine("Unable to open image format");
|
|
|
|
|
DicConsole.ErrorWriteLine("Error: {0}", ex.Message);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-24 23:35:33 +01:00
|
|
|
List<Partition> partitions = Partitions.GetAll(_imageFormat);
|
|
|
|
|
Partitions.AddSchemesToStats(partitions);
|
2016-07-22 02:18:29 +01:00
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
if(partitions.Count == 0) DicConsole.DebugWriteLine("Ls command", "No partitions found");
|
2016-07-22 02:18:29 +01:00
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine("{0} partitions found.", partitions.Count);
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < partitions.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
DicConsole.WriteLine();
|
2017-07-19 16:37:11 +01:00
|
|
|
DicConsole.WriteLine("Partition {0}:", partitions[i].Sequence);
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
DicConsole.WriteLine("Identifying filesystem on partition");
|
|
|
|
|
|
2017-07-19 16:31:08 +01:00
|
|
|
Core.Filesystems.Identify(_imageFormat, out id_plugins, partitions[i]);
|
2017-12-19 20:33:03 +00:00
|
|
|
if(id_plugins.Count == 0) DicConsole.WriteLine("Filesystem not identified");
|
2016-07-22 02:18:29 +01:00
|
|
|
else if(id_plugins.Count > 1)
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("Identified by {0} plugins", id_plugins.Count));
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
foreach(string plugin_name in id_plugins)
|
|
|
|
|
{
|
|
|
|
|
if(plugins.PluginsList.TryGetValue(plugin_name, out _plugin))
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("As identified by {0}.", _plugin.Name));
|
2017-12-19 20:33:03 +00:00
|
|
|
Filesystem fs = (Filesystem)_plugin
|
|
|
|
|
.GetType().GetConstructor(new Type[]
|
|
|
|
|
{
|
|
|
|
|
typeof(ImagePlugin), typeof(Partition), typeof(System.Text.Encoding)
|
|
|
|
|
}).Invoke(new object[] {_imageFormat, partitions[i], null});
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
error = fs.Mount(options.Debug);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
List<string> rootDir = new List<string>();
|
|
|
|
|
error = fs.ReadDir("/", ref rootDir);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
foreach(string entry in rootDir) DicConsole.WriteLine("{0}", entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
else
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.ErrorWriteLine("Error {0} reading root directory {0}",
|
|
|
|
|
error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
Core.Statistics.AddFilesystem(fs.XmlFSType.Type);
|
|
|
|
|
}
|
|
|
|
|
else
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.ErrorWriteLine("Unable to mount device, error {0}",
|
|
|
|
|
error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
plugins.PluginsList.TryGetValue(id_plugins[0], out _plugin);
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("Identified by {0}.", _plugin.Name));
|
2017-12-19 20:33:03 +00:00
|
|
|
Filesystem fs = (Filesystem)_plugin
|
|
|
|
|
.GetType().GetConstructor(new Type[]
|
|
|
|
|
{
|
|
|
|
|
typeof(ImagePlugin), typeof(Partition), typeof(System.Text.Encoding)
|
|
|
|
|
}).Invoke(new object[] {_imageFormat, partitions[i], null});
|
2016-07-22 02:18:29 +01:00
|
|
|
error = fs.Mount(options.Debug);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
List<string> rootDir = new List<string>();
|
|
|
|
|
error = fs.ReadDir("/", ref rootDir);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
foreach(string entry in rootDir) DicConsole.WriteLine("{0}", entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
DicConsole.ErrorWriteLine("Error {0} reading root directory {0}", error.ToString());
|
|
|
|
|
|
|
|
|
|
Core.Statistics.AddFilesystem(fs.XmlFSType.Type);
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.ErrorWriteLine("Unable to mount device, error {0}", error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-19 16:31:08 +01:00
|
|
|
Partition wholePart = new Partition
|
|
|
|
|
{
|
2017-07-19 16:37:11 +01:00
|
|
|
Name = "Whole device",
|
|
|
|
|
Length = _imageFormat.GetSectors(),
|
|
|
|
|
Size = _imageFormat.GetSectors() * _imageFormat.GetSectorSize()
|
2017-07-19 16:31:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Core.Filesystems.Identify(_imageFormat, out id_plugins, wholePart);
|
2017-12-19 20:33:03 +00:00
|
|
|
if(id_plugins.Count == 0) DicConsole.WriteLine("Filesystem not identified");
|
2016-07-22 02:18:29 +01:00
|
|
|
else if(id_plugins.Count > 1)
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("Identified by {0} plugins", id_plugins.Count));
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
foreach(string plugin_name in id_plugins)
|
|
|
|
|
{
|
|
|
|
|
if(plugins.PluginsList.TryGetValue(plugin_name, out _plugin))
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("As identified by {0}.", _plugin.Name));
|
2017-12-19 20:33:03 +00:00
|
|
|
Filesystem fs = (Filesystem)_plugin
|
|
|
|
|
.GetType().GetConstructor(new Type[]
|
|
|
|
|
{
|
|
|
|
|
typeof(ImagePlugin), typeof(Partition), typeof(System.Text.Encoding)
|
|
|
|
|
}).Invoke(new object[] {_imageFormat, wholePart, null});
|
2016-07-22 02:18:29 +01:00
|
|
|
error = fs.Mount(options.Debug);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
List<string> rootDir = new List<string>();
|
|
|
|
|
error = fs.ReadDir("/", ref rootDir);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
foreach(string entry in rootDir) DicConsole.WriteLine("{0}", entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
DicConsole.ErrorWriteLine("Error {0} reading root directory {0}", error.ToString());
|
|
|
|
|
|
|
|
|
|
Core.Statistics.AddFilesystem(fs.XmlFSType.Type);
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.ErrorWriteLine("Unable to mount device, error {0}", error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
plugins.PluginsList.TryGetValue(id_plugins[0], out _plugin);
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.WriteLine(string.Format("Identified by {0}.", _plugin.Name));
|
2017-12-19 20:33:03 +00:00
|
|
|
Filesystem fs = (Filesystem)_plugin
|
|
|
|
|
.GetType().GetConstructor(new Type[]
|
|
|
|
|
{
|
|
|
|
|
typeof(ImagePlugin), typeof(Partition), typeof(System.Text.Encoding)
|
|
|
|
|
}).Invoke(new object[] {_imageFormat, wholePart, null});
|
2016-07-22 02:18:29 +01:00
|
|
|
error = fs.Mount(options.Debug);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
List<string> rootDir = new List<string>();
|
|
|
|
|
error = fs.ReadDir("/", ref rootDir);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
foreach(string entry in rootDir)
|
|
|
|
|
{
|
|
|
|
|
if(options.Long)
|
|
|
|
|
{
|
|
|
|
|
FileEntryInfo stat = new FileEntryInfo();
|
|
|
|
|
List<string> xattrs = new List<string>();
|
|
|
|
|
|
|
|
|
|
error = fs.Stat(entry, ref stat);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.WriteLine("{0}\t{1}\t{2} bytes\t{3}", stat.CreationTimeUtc,
|
|
|
|
|
stat.Inode, stat.Length, entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
error = fs.ListXAttr(entry, ref xattrs);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
|
|
|
|
foreach(string xattr in xattrs)
|
|
|
|
|
{
|
|
|
|
|
byte[] xattrBuf = new byte[0];
|
|
|
|
|
error = fs.GetXattr(entry, xattr, ref xattrBuf);
|
|
|
|
|
if(error == Errno.NoError)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
DicConsole.WriteLine("\t\t{0}\t{1} bytes", xattr, xattrBuf.Length);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.WriteLine("{0}", entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.WriteLine("{0}", entry);
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.ErrorWriteLine("Error {0} reading root directory {0}", error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
|
|
|
|
|
Core.Statistics.AddFilesystem(fs.XmlFSType.Type);
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else DicConsole.ErrorWriteLine("Unable to mount device, error {0}", error.ToString());
|
2016-07-22 02:18:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch(Exception ex)
|
|
|
|
|
{
|
2016-07-28 22:25:26 +01:00
|
|
|
DicConsole.ErrorWriteLine(string.Format("Error reading file: {0}", ex.Message));
|
2016-07-22 02:18:29 +01:00
|
|
|
DicConsole.DebugWriteLine("Ls command", ex.StackTrace);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core.Statistics.AddCommand("ls");
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
}
|