SparkleShare/SparkleLib/SparkleFetcherBase.cs

364 lines
13 KiB
C#
Raw Normal View History

// SparkleShare, a collaboration and sharing tool.
// Copyright (C) 2010 Hylke Bons <hylkebons@gmail.com>
//
// 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/>.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Security.Cryptography;
using System.Threading;
namespace SparkleLib {
// Sets up a fetcher that can get remote folders
public abstract class SparkleFetcherBase {
public event Action Started = delegate { };
public event Action Failed = delegate { };
public event FinishedEventHandler Finished = delegate { };
public delegate void FinishedEventHandler (bool repo_is_encrypted, bool repo_is_empty, string [] warnings);
public event ProgressChangedEventHandler ProgressChanged = delegate { };
2011-08-27 15:53:17 +00:00
public delegate void ProgressChangedEventHandler (double percentage);
2012-02-09 01:46:25 +00:00
public abstract bool Fetch ();
public abstract void Stop ();
public abstract bool IsFetchedRepoEmpty { get; }
public abstract bool IsFetchedRepoPasswordCorrect (string password);
public abstract void EnableFetchedRepoCrypto (string password);
public Uri RemoteUrl { get; protected set; }
public string RequiredFingerprint { get; protected set; }
public readonly bool FetchPriorHistory = false;
public string TargetFolder { get; protected set; }
public bool IsActive { get; private set; }
2012-07-06 09:26:02 +00:00
public string Identifier;
public string [] Warnings {
get {
return this.warnings.ToArray ();
}
}
2012-06-17 20:56:27 +00:00
public string [] Errors {
get {
return this.errors.ToArray ();
}
}
2012-06-19 09:43:18 +00:00
protected List<string> warnings = new List<string> ();
2012-07-06 09:26:02 +00:00
protected List<string> errors = new List<string> ();
protected string [] ExcludeRules = new string [] {
"*.autosave", // Various autosaving apps
"*~", // gedit and emacs
".~lock.*", // LibreOffice
"*.part", "*.crdownload", // Firefox and Chromium temporary download files
".*.sw[a-z]", "*.un~", "*.swp", "*.swo", // vi(m)
".directory", // KDE
".DS_Store", "Icon\r\r", "._*", ".Spotlight-V100", ".Trashes", // Mac OS X
"*(Autosaved).graffle", // Omnigraffle
"Thumbs.db", "Desktop.ini", // Windows
"~*.tmp", "~*.TMP", "*~*.tmp", "*~*.TMP", // MS Office
"~*.ppt", "~*.PPT", "~*.pptx", "~*.PPTX",
"~*.xls", "~*.XLS", "~*.xlsx", "~*.XLSX",
"~*.doc", "~*.DOC", "~*.docx", "~*.DOCX",
"*/CVS/*", ".cvsignore", "*/.cvsignore", // CVS
"/.svn/*", "*/.svn/*", // Subversion
"/.hg/*", "*/.hg/*", "*/.hgignore", // Mercurial
"/.bzr/*", "*/.bzr/*", "*/.bzrignore" // Bazaar
};
2012-06-17 20:56:27 +00:00
2011-08-27 18:57:34 +00:00
private Thread thread;
2012-07-06 09:26:02 +00:00
public SparkleFetcherBase (string server, string required_fingerprint,
string remote_path, string target_folder, bool fetch_prior_history)
{
RequiredFingerprint = required_fingerprint;
FetchPriorHistory = fetch_prior_history;
remote_path = remote_path.Trim ("/".ToCharArray ());
2012-04-11 21:10:02 +00:00
if (server.EndsWith ("/"))
server = server.Substring (0, server.Length - 1);
if (!remote_path.StartsWith ("/"))
remote_path = "/" + remote_path;
if (!server.Contains ("://"))
server = "ssh://" + server;
2012-02-09 01:46:25 +00:00
TargetFolder = target_folder;
2012-04-11 21:10:02 +00:00
RemoteUrl = new Uri (server + remote_path);
IsActive = false;
}
public void Start ()
{
IsActive = true;
Started ();
2012-07-28 13:58:09 +00:00
SparkleLogger.LogInfo ("Fetcher", TargetFolder + " | Fetching folder: " + RemoteUrl);
2012-02-09 01:46:25 +00:00
if (Directory.Exists (TargetFolder))
Directory.Delete (TargetFolder, true);
string host_key = "";
2012-04-11 21:10:02 +00:00
if (!RemoteUrl.Scheme.StartsWith ("http")) {
host_key = FetchHostKey ();
if (string.IsNullOrEmpty (RemoteUrl.Host) || host_key == null) {
Failed ();
return;
}
bool warn = true;
if (RequiredFingerprint != null) {
string host_fingerprint = DeriveFingerprint (host_key);
if (host_fingerprint == null || !RequiredFingerprint.Equals (host_fingerprint)) {
SparkleLogger.LogInfo ("Auth", "Fingerprint doesn't match");
this.errors.Add ("error: Host fingerprint doesn't match");
Failed ();
return;
}
warn = false;
SparkleLogger.LogInfo ("Auth", "Fingerprint matches");
} else {
SparkleLogger.LogInfo ("Auth", "Skipping fingerprint check");
}
AcceptHostKey (host_key, warn);
}
2012-07-22 09:51:56 +00:00
this.thread = new Thread (() => {
if (Fetch ()) {
Thread.Sleep (500);
2012-07-28 13:58:09 +00:00
SparkleLogger.LogInfo ("Fetcher", "Finished");
2011-05-31 01:26:57 +00:00
2012-07-22 09:51:56 +00:00
IsActive = false;
bool repo_is_encrypted = RemoteUrl.AbsolutePath.Contains ("-crypto");
2012-07-22 09:51:56 +00:00
Finished (repo_is_encrypted, IsFetchedRepoEmpty, Warnings);
2011-05-31 01:26:57 +00:00
2012-07-22 09:51:56 +00:00
} else {
Thread.Sleep (500);
2012-07-28 13:58:09 +00:00
SparkleLogger.LogInfo ("Fetcher", "Failed");
2011-05-31 01:26:57 +00:00
2012-07-22 09:51:56 +00:00
IsActive = false;
Failed ();
}
});
this.thread.Start ();
}
public virtual void Complete ()
{
string identifier_path = Path.Combine (TargetFolder, ".sparkleshare");
2012-07-06 09:26:02 +00:00
if (File.Exists (identifier_path)) {
Identifier = File.ReadAllText (identifier_path).Trim ();
2012-10-20 22:25:36 +00:00
2012-07-06 09:26:02 +00:00
} else {
Identifier = CreateIdentifier ();
File.WriteAllText (identifier_path, Identifier);
CreateInitialChangeSet ();
2012-10-04 16:51:47 +00:00
}
2012-10-20 22:25:36 +00:00
File.SetAttributes (identifier_path, FileAttributes.Hidden);
}
// Create an initial change set when the
// user has fetched an empty remote folder
2012-10-04 16:51:47 +00:00
private void CreateInitialChangeSet ()
{
string file_path = Path.Combine (TargetFolder, "SparkleShare.txt");
string n = Environment.NewLine;
UriBuilder uri_builder = new UriBuilder (RemoteUrl);
if (RemoteUrl.Scheme.StartsWith ("http")) {
uri_builder.UserName = "";
uri_builder.Password = "";
}
bool repo_is_encrypted = RemoteUrl.AbsolutePath.Contains ("-crypto");
string text;
if (repo_is_encrypted) {
text = GenerateCryptoSalt () + " Secret project! " + GenerateCryptoSalt ();
} else {
text = "Congratulations, you've successfully created a SparkleShare repository!" + n +
n +
"Any files you add or change in this folder will be automatically synced to " + n +
uri_builder.ToString () + " and everyone connected to it." + n +
n +
"SparkleShare is an Open Source software program that helps people collaborate and " + n +
"share files. If you like what we do, consider buying us a beer: http://www.sparkleshare.org/" + n +
n +
"Have fun! :)" + n;
}
File.WriteAllText (file_path, text);
}
2012-07-06 09:26:02 +00:00
public static string CreateIdentifier ()
{
2012-07-08 09:29:00 +00:00
string random = Path.GetRandomFileName ();
2012-07-28 13:58:09 +00:00
return random.SHA1 ();
2012-07-06 09:26:02 +00:00
}
public void Dispose ()
{
2012-08-27 12:24:23 +00:00
if (this.thread != null)
this.thread.Abort ();
}
2011-08-27 15:53:17 +00:00
protected void OnProgressChanged (double percentage) {
ProgressChanged (percentage);
2011-08-27 15:53:17 +00:00
}
2011-05-31 01:26:57 +00:00
protected string GenerateCryptoSalt ()
{
2012-10-04 16:51:47 +00:00
string salt = Path.GetRandomFileName ().SHA1 ();
return salt.Substring (0, 16);
}
private string FetchHostKey ()
2011-05-31 01:26:57 +00:00
{
string host = RemoteUrl.Host;
2012-09-05 12:41:30 +00:00
int port = RemoteUrl.Port;
if (port < 1)
port = 22;
2012-07-28 13:58:09 +00:00
SparkleLogger.LogInfo ("Auth", "Fetching host key for " + host);
Process process = new Process () {
EnableRaisingEvents = true
};
2011-05-31 01:26:57 +00:00
2012-07-22 20:54:59 +00:00
process.StartInfo.FileName = "ssh-keyscan";
process.StartInfo.Arguments = "-t rsa -p " + port + " " + host;
process.StartInfo.WorkingDirectory = SparkleConfig.DefaultConfig.TmpPath;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.CreateNoWindow = true;
2011-05-31 01:26:57 +00:00
process.Start ();
// Reading the standard output HAS to go before
// WaitForExit, or it will hang forever on output > 4096 bytes
string host_key = process.StandardOutput.ReadToEnd ().Trim ();
process.WaitForExit ();
2011-05-31 01:26:57 +00:00
if (process.ExitCode == 0 && !string.IsNullOrEmpty (host_key))
return host_key;
else
return null;
}
private string DeriveFingerprint (string public_key)
{
try {
MD5 md5 = new MD5CryptoServiceProvider ();
string key = public_key.Split (" ".ToCharArray ()) [2];
byte [] b64_bytes = Convert.FromBase64String (key);
byte [] md5_bytes = md5.ComputeHash (b64_bytes);
string fingerprint = BitConverter.ToString (md5_bytes);
return fingerprint.ToLower ().Replace ("-", ":");
} catch (Exception e) {
SparkleLogger.LogInfo ("Fetcher", "Failed creating fingerprint: " + e.Message + e.StackTrace);
return null;
}
}
private void AcceptHostKey (string host_key, bool warn)
{
string ssh_config_path = Path.Combine (SparkleConfig.DefaultConfig.HomePath, ".ssh");
string known_hosts_file_path = Path.Combine (ssh_config_path, "known_hosts");
2011-05-31 01:26:57 +00:00
if (!File.Exists (known_hosts_file_path)) {
if (!Directory.Exists (ssh_config_path))
Directory.CreateDirectory (ssh_config_path);
2011-05-31 01:26:57 +00:00
File.Create (known_hosts_file_path).Close ();
2011-05-31 01:26:57 +00:00
}
string host = RemoteUrl.Host;
string known_hosts = File.ReadAllText (known_hosts_file_path);
string [] known_hosts_lines = File.ReadAllLines (known_hosts_file_path);
foreach (string line in known_hosts_lines) {
if (line.StartsWith (host + " "))
return;
}
if (known_hosts.EndsWith ("\n"))
File.AppendAllText (known_hosts_file_path, host_key + "\n");
2011-05-31 01:26:57 +00:00
else
File.AppendAllText (known_hosts_file_path, "\n" + host_key + "\n");
2012-07-28 13:58:09 +00:00
SparkleLogger.LogInfo ("Auth", "Accepted host key for " + host);
if (warn)
this.warnings.Add ("The following host key has been accepted:\n" + DeriveFingerprint (host_key));
}
2012-10-04 16:51:47 +00:00
public static string GetBackend (string path)
{
string extension = Path.GetExtension (path);
if (!string.IsNullOrEmpty (extension)) {
extension = extension.Substring (1);
char [] letters = extension.ToCharArray ();
letters [0] = char.ToUpper (letters [0]);
return new string (letters);
} else {
return "Git";
}
}
}
}