2020-03-29 17:28:22 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Google.Apis.Util;
|
|
|
|
|
using NBitcoin;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Services
|
|
|
|
|
{
|
|
|
|
|
public class PayjoinClient
|
|
|
|
|
{
|
2020-04-07 14:18:56 +02:00
|
|
|
|
public const string BIP21EndpointKey = "bpu";
|
2020-03-29 17:28:22 +02:00
|
|
|
|
private readonly ExplorerClientProvider _explorerClientProvider;
|
|
|
|
|
private HttpClient _httpClient;
|
|
|
|
|
|
|
|
|
|
public PayjoinClient(ExplorerClientProvider explorerClientProvider, IHttpClientFactory httpClientFactory)
|
|
|
|
|
{
|
|
|
|
|
if (httpClientFactory == null) throw new ArgumentNullException(nameof(httpClientFactory));
|
|
|
|
|
_explorerClientProvider =
|
|
|
|
|
explorerClientProvider ?? throw new ArgumentNullException(nameof(explorerClientProvider));
|
|
|
|
|
_httpClient = httpClientFactory.CreateClient("payjoin");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<PSBT> RequestPayjoin(Uri endpoint, DerivationSchemeSettings derivationSchemeSettings,
|
|
|
|
|
PSBT originalTx, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
if (endpoint == null) throw new ArgumentNullException(nameof(endpoint));
|
|
|
|
|
if (derivationSchemeSettings == null) throw new ArgumentNullException(nameof(derivationSchemeSettings));
|
|
|
|
|
if (originalTx == null) throw new ArgumentNullException(nameof(originalTx));
|
2020-04-08 11:24:04 +02:00
|
|
|
|
if (originalTx.IsAllFinalized())
|
|
|
|
|
throw new InvalidOperationException("The original PSBT should not be finalized.");
|
2020-03-29 17:28:22 +02:00
|
|
|
|
|
|
|
|
|
var signingAccount = derivationSchemeSettings.GetSigningAccountKeySettings();
|
|
|
|
|
var sentBefore = -originalTx.GetBalance(derivationSchemeSettings.AccountDerivation,
|
|
|
|
|
signingAccount.AccountKey,
|
|
|
|
|
signingAccount.GetRootedKeyPath());
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var oldGlobalTx = originalTx.GetGlobalTransaction();
|
|
|
|
|
if (!originalTx.TryGetEstimatedFeeRate(out var originalFeeRate) || !originalTx.TryGetVirtualSize(out var oldVirtualSize))
|
2020-03-29 17:28:22 +02:00
|
|
|
|
throw new ArgumentException("originalTx should have utxo information", nameof(originalTx));
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var originalFee = originalTx.GetFee();
|
2020-03-29 17:28:22 +02:00
|
|
|
|
var cloned = originalTx.Clone();
|
2020-04-08 11:24:04 +02:00
|
|
|
|
if (!cloned.TryFinalize(out var errors))
|
2020-03-29 17:28:22 +02:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We make sure we don't send unnecessary information to the receiver
|
|
|
|
|
foreach (var finalized in cloned.Inputs.Where(i => i.IsFinalized()))
|
|
|
|
|
{
|
|
|
|
|
finalized.ClearForFinalize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var output in cloned.Outputs)
|
|
|
|
|
{
|
|
|
|
|
output.HDKeyPaths.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cloned.GlobalXPubs.Clear();
|
|
|
|
|
var bpuresponse = await _httpClient.PostAsync(endpoint,
|
|
|
|
|
new StringContent(cloned.ToHex(), Encoding.UTF8, "text/plain"), cancellationToken);
|
|
|
|
|
if (!bpuresponse.IsSuccessStatusCode)
|
|
|
|
|
{
|
|
|
|
|
var errorStr = await bpuresponse.Content.ReadAsStringAsync();
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var error = JObject.Parse(errorStr);
|
|
|
|
|
throw new PayjoinReceiverException((int)bpuresponse.StatusCode, error["errorCode"].Value<string>(),
|
|
|
|
|
error["message"].Value<string>());
|
|
|
|
|
}
|
|
|
|
|
catch (JsonReaderException)
|
|
|
|
|
{
|
|
|
|
|
// will throw
|
|
|
|
|
bpuresponse.EnsureSuccessStatusCode();
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var hex = await bpuresponse.Content.ReadAsStringAsync();
|
|
|
|
|
var newPSBT = PSBT.Parse(hex, originalTx.Network);
|
|
|
|
|
|
|
|
|
|
// Checking that the PSBT of the receiver is clean
|
|
|
|
|
if (newPSBT.GlobalXPubs.Any())
|
|
|
|
|
{
|
|
|
|
|
throw new PayjoinSenderException("GlobalXPubs should not be included in the receiver's PSBT");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (newPSBT.Outputs.Any(o => o.HDKeyPaths.Count != 0) || newPSBT.Inputs.Any(o => o.HDKeyPaths.Count != 0))
|
|
|
|
|
{
|
|
|
|
|
throw new PayjoinSenderException("Keypath information should not be included in the receiver's PSBT");
|
|
|
|
|
}
|
|
|
|
|
////////////
|
|
|
|
|
|
|
|
|
|
newPSBT = await _explorerClientProvider.UpdatePSBT(derivationSchemeSettings, newPSBT);
|
|
|
|
|
if (newPSBT.CheckSanity() is IList<PSBTError> errors2 && errors2.Count != 0)
|
|
|
|
|
{
|
|
|
|
|
throw new PayjoinSenderException($"The PSBT of the receiver is insane ({errors2[0]})");
|
|
|
|
|
}
|
|
|
|
|
// We make sure we don't sign things what should not be signed
|
|
|
|
|
foreach (var finalized in newPSBT.Inputs.Where(i => i.IsFinalized()))
|
|
|
|
|
{
|
|
|
|
|
finalized.ClearForFinalize();
|
|
|
|
|
}
|
|
|
|
|
// Make sure only the only our output have any information
|
|
|
|
|
foreach (var output in newPSBT.Outputs)
|
|
|
|
|
{
|
|
|
|
|
output.HDKeyPaths.Clear();
|
|
|
|
|
foreach (var originalOutput in originalTx.Outputs)
|
|
|
|
|
{
|
|
|
|
|
if (output.ScriptPubKey == originalOutput.ScriptPubKey)
|
|
|
|
|
output.UpdateFrom(originalOutput);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Making sure that our inputs are finalized, and that some of our inputs have not been added
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var newGlobalTx = newPSBT.GetGlobalTransaction();
|
2020-03-29 17:28:22 +02:00
|
|
|
|
int ourInputCount = 0;
|
2020-04-06 16:21:02 +02:00
|
|
|
|
if (newGlobalTx.Version != oldGlobalTx.Version)
|
|
|
|
|
throw new PayjoinSenderException("The version field of the transaction has been modified");
|
|
|
|
|
if (newGlobalTx.LockTime != oldGlobalTx.LockTime)
|
|
|
|
|
throw new PayjoinSenderException("The LockTime field of the transaction has been modified");
|
2020-03-29 17:28:22 +02:00
|
|
|
|
foreach (var input in newPSBT.Inputs.CoinsFor(derivationSchemeSettings.AccountDerivation,
|
|
|
|
|
signingAccount.AccountKey, signingAccount.GetRootedKeyPath()))
|
|
|
|
|
{
|
2020-04-08 10:42:50 +02:00
|
|
|
|
if (oldGlobalTx.Inputs.FindIndexedInput(input.PrevOut) is IndexedTxIn ourInput)
|
2020-03-29 17:28:22 +02:00
|
|
|
|
{
|
|
|
|
|
ourInputCount++;
|
|
|
|
|
if (input.IsFinalized())
|
|
|
|
|
throw new PayjoinSenderException("A PSBT input from us should not be finalized");
|
2020-04-08 10:51:22 +02:00
|
|
|
|
if (newGlobalTx.Inputs[input.Index].Sequence != ourInput.TxIn.Sequence)
|
2020-04-06 16:21:02 +02:00
|
|
|
|
throw new PayjoinSenderException("The sequence of one of our input has been modified");
|
2020-03-29 17:28:22 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new PayjoinSenderException(
|
|
|
|
|
"The payjoin receiver added some of our own inputs in the proposal");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 16:21:02 +02:00
|
|
|
|
// Making sure that the receiver's inputs are finalized and P2PWKH
|
2020-03-29 17:28:22 +02:00
|
|
|
|
foreach (var input in newPSBT.Inputs)
|
|
|
|
|
{
|
2020-04-06 16:21:02 +02:00
|
|
|
|
if (originalTx.Inputs.FindIndexedInput(input.PrevOut) is null)
|
|
|
|
|
{
|
|
|
|
|
if (!input.IsFinalized())
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver included a non finalized input");
|
|
|
|
|
if (!(input.FinalScriptWitness.GetSigner() is WitKeyId))
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver included an input that is not P2PWKH");
|
|
|
|
|
}
|
2020-03-29 17:28:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ourInputCount < originalTx.Inputs.Count)
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver removed some of our inputs");
|
|
|
|
|
|
|
|
|
|
// We limit the number of inputs the receiver can add
|
|
|
|
|
var addedInputs = newPSBT.Inputs.Count - originalTx.Inputs.Count;
|
2020-04-06 16:21:02 +02:00
|
|
|
|
if (addedInputs == 0)
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver did not added any input");
|
2020-03-29 17:28:22 +02:00
|
|
|
|
|
|
|
|
|
var sentAfter = -newPSBT.GetBalance(derivationSchemeSettings.AccountDerivation,
|
|
|
|
|
signingAccount.AccountKey,
|
|
|
|
|
signingAccount.GetRootedKeyPath());
|
|
|
|
|
if (sentAfter > sentBefore)
|
|
|
|
|
{
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var overPaying = sentAfter - sentBefore;
|
2020-03-29 17:28:22 +02:00
|
|
|
|
if (!newPSBT.TryGetEstimatedFeeRate(out var newFeeRate) || !newPSBT.TryGetVirtualSize(out var newVirtualSize))
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver did not included UTXO information to calculate fee correctly");
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var additionalFee = newPSBT.GetFee() - originalFee;
|
|
|
|
|
if (overPaying > additionalFee)
|
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver is sending more money to himself");
|
2020-04-07 08:10:19 +02:00
|
|
|
|
if (overPaying > originalFee)
|
2020-04-06 16:21:02 +02:00
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver is making us pay more than twice the original fee");
|
|
|
|
|
|
2020-03-29 17:28:22 +02:00
|
|
|
|
// Let's check the difference is only for the fee and that feerate
|
|
|
|
|
// did not changed that much
|
2020-04-06 16:21:02 +02:00
|
|
|
|
var expectedFee = originalFeeRate.GetFee(newVirtualSize);
|
2020-03-29 17:28:22 +02:00
|
|
|
|
// Signing precisely is hard science, give some breathing room for error.
|
2020-04-06 16:21:02 +02:00
|
|
|
|
expectedFee += originalFeeRate.GetFee(newPSBT.Inputs.Count * 2);
|
2020-04-07 08:10:19 +02:00
|
|
|
|
if (overPaying > (expectedFee - originalFee))
|
2020-04-06 16:21:02 +02:00
|
|
|
|
throw new PayjoinSenderException("The payjoin receiver increased the fee rate we are paying too much");
|
2020-03-29 17:28:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return newPSBT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PayjoinException : Exception
|
|
|
|
|
{
|
|
|
|
|
public PayjoinException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PayjoinReceiverException : PayjoinException
|
|
|
|
|
{
|
|
|
|
|
public PayjoinReceiverException(int httpCode, string errorCode, string message) : base(FormatMessage(httpCode,
|
|
|
|
|
errorCode, message))
|
|
|
|
|
{
|
|
|
|
|
HttpCode = httpCode;
|
|
|
|
|
ErrorCode = errorCode;
|
|
|
|
|
ErrorMessage = message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int HttpCode { get; }
|
|
|
|
|
public string ErrorCode { get; }
|
|
|
|
|
public string ErrorMessage { get; }
|
|
|
|
|
|
|
|
|
|
private static string FormatMessage(in int httpCode, string errorCode, string message)
|
|
|
|
|
{
|
|
|
|
|
return $"{errorCode}: {message} (HTTP: {httpCode})";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class PayjoinSenderException : PayjoinException
|
|
|
|
|
{
|
|
|
|
|
public PayjoinSenderException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|