2017-05-23 07:14:08 +02:00
|
|
|
var Buffer = require('safe-buffer').Buffer
|
2015-08-22 03:54:00 +02:00
|
|
|
var bip66 = require('bip66')
|
2016-12-17 15:24:00 +01:00
|
|
|
var pushdata = require('pushdata-bitcoin')
|
2015-08-11 09:01:47 +02:00
|
|
|
var typeforce = require('typeforce')
|
|
|
|
var types = require('./types')
|
2016-11-14 01:17:27 +01:00
|
|
|
var scriptNumber = require('./script_number')
|
2016-12-17 15:24:00 +01:00
|
|
|
|
|
|
|
var OPS = require('bitcoin-ops')
|
|
|
|
var REVERSE_OPS = require('bitcoin-ops/map')
|
2015-11-19 07:04:21 +01:00
|
|
|
var OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1
|
2015-10-02 05:00:00 +02:00
|
|
|
|
2016-11-14 05:28:27 +01:00
|
|
|
function isOPInt (value) {
|
|
|
|
return types.Number(value) &&
|
2017-03-29 08:05:31 +02:00
|
|
|
((value === OPS.OP_0) ||
|
2016-11-14 05:28:27 +01:00
|
|
|
(value >= OPS.OP_1 && value <= OPS.OP_16) ||
|
2017-03-29 08:05:31 +02:00
|
|
|
(value === OPS.OP_1NEGATE))
|
2016-11-14 05:28:27 +01:00
|
|
|
}
|
|
|
|
|
2016-11-14 06:03:06 +01:00
|
|
|
function isPushOnlyChunk (value) {
|
|
|
|
return types.Buffer(value) || isOPInt(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPushOnly (value) {
|
|
|
|
return types.Array(value) && value.every(isPushOnlyChunk)
|
2016-11-14 05:28:27 +01:00
|
|
|
}
|
|
|
|
|
2017-08-23 09:11:47 +02:00
|
|
|
function asMinimalOP (buffer) {
|
|
|
|
if (buffer.length === 0) return OPS.OP_0
|
|
|
|
if (buffer.length !== 1) return
|
|
|
|
if (buffer[0] >= 1 && buffer[0] <= 16) return OP_INT_BASE + buffer[0]
|
|
|
|
if (buffer[0] === 0x81) return OPS.OP_1NEGATE
|
|
|
|
}
|
|
|
|
|
2015-08-14 03:16:17 +02:00
|
|
|
function compile (chunks) {
|
|
|
|
// TODO: remove me
|
2015-11-26 02:07:04 +01:00
|
|
|
if (Buffer.isBuffer(chunks)) return chunks
|
2015-08-14 03:16:17 +02:00
|
|
|
|
|
|
|
typeforce(types.Array, chunks)
|
|
|
|
|
|
|
|
var bufferSize = chunks.reduce(function (accum, chunk) {
|
|
|
|
// data chunk
|
|
|
|
if (Buffer.isBuffer(chunk)) {
|
2016-09-29 05:48:17 +02:00
|
|
|
// adhere to BIP62.3, minimal push policy
|
2017-08-23 09:11:47 +02:00
|
|
|
if (chunk.length === 1 && asMinimalOP(chunk) !== undefined) {
|
2016-09-29 05:48:17 +02:00
|
|
|
return accum + 1
|
|
|
|
}
|
|
|
|
|
2016-12-17 15:24:00 +01:00
|
|
|
return accum + pushdata.encodingLength(chunk.length) + chunk.length
|
2015-08-14 03:16:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// opcode
|
|
|
|
return accum + 1
|
|
|
|
}, 0.0)
|
|
|
|
|
2017-04-19 09:24:58 +02:00
|
|
|
var buffer = Buffer.allocUnsafe(bufferSize)
|
2015-08-14 03:16:17 +02:00
|
|
|
var offset = 0
|
|
|
|
|
|
|
|
chunks.forEach(function (chunk) {
|
|
|
|
// data chunk
|
|
|
|
if (Buffer.isBuffer(chunk)) {
|
2016-09-29 05:48:17 +02:00
|
|
|
// adhere to BIP62.3, minimal push policy
|
2017-08-23 09:11:47 +02:00
|
|
|
var opcode = asMinimalOP(chunk)
|
|
|
|
if (opcode !== undefined) {
|
2016-09-29 05:48:17 +02:00
|
|
|
buffer.writeUInt8(opcode, offset)
|
|
|
|
offset += 1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-17 15:24:00 +01:00
|
|
|
offset += pushdata.encode(buffer, chunk.length, offset)
|
2015-08-14 03:16:17 +02:00
|
|
|
chunk.copy(buffer, offset)
|
|
|
|
offset += chunk.length
|
|
|
|
|
|
|
|
// opcode
|
|
|
|
} else {
|
|
|
|
buffer.writeUInt8(chunk, offset)
|
|
|
|
offset += 1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if (offset !== buffer.length) throw new Error('Could not decode chunks')
|
|
|
|
return buffer
|
|
|
|
}
|
|
|
|
|
|
|
|
function decompile (buffer) {
|
|
|
|
// TODO: remove me
|
|
|
|
if (types.Array(buffer)) return buffer
|
|
|
|
|
|
|
|
typeforce(types.Buffer, buffer)
|
|
|
|
|
|
|
|
var chunks = []
|
|
|
|
var i = 0
|
|
|
|
|
|
|
|
while (i < buffer.length) {
|
2015-08-25 10:08:32 +02:00
|
|
|
var opcode = buffer[i]
|
2015-08-14 03:16:17 +02:00
|
|
|
|
|
|
|
// data chunk
|
|
|
|
if ((opcode > OPS.OP_0) && (opcode <= OPS.OP_PUSHDATA4)) {
|
2016-12-17 15:24:00 +01:00
|
|
|
var d = pushdata.decode(buffer, i)
|
2015-08-14 03:16:17 +02:00
|
|
|
|
|
|
|
// did reading a pushDataInt fail? empty script
|
2018-04-13 17:42:48 +02:00
|
|
|
if (d === null) return null
|
2015-08-14 03:16:17 +02:00
|
|
|
i += d.size
|
|
|
|
|
|
|
|
// attempt to read too much data? empty script
|
2018-04-13 17:42:48 +02:00
|
|
|
if (i + d.number > buffer.length) return null
|
2015-08-14 03:16:17 +02:00
|
|
|
|
|
|
|
var data = buffer.slice(i, i + d.number)
|
|
|
|
i += d.number
|
|
|
|
|
2017-08-23 09:11:47 +02:00
|
|
|
// decompile minimally
|
|
|
|
var op = asMinimalOP(data)
|
|
|
|
if (op !== undefined) {
|
|
|
|
chunks.push(op)
|
|
|
|
} else {
|
|
|
|
chunks.push(data)
|
|
|
|
}
|
2015-08-14 03:16:17 +02:00
|
|
|
|
|
|
|
// opcode
|
|
|
|
} else {
|
|
|
|
chunks.push(opcode)
|
|
|
|
|
|
|
|
i += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return chunks
|
|
|
|
}
|
2014-06-12 13:14:22 +02:00
|
|
|
|
2016-09-28 00:44:21 +02:00
|
|
|
function toASM (chunks) {
|
|
|
|
if (Buffer.isBuffer(chunks)) {
|
|
|
|
chunks = decompile(chunks)
|
|
|
|
}
|
|
|
|
|
|
|
|
return chunks.map(function (chunk) {
|
|
|
|
// data?
|
2017-08-23 09:11:47 +02:00
|
|
|
if (Buffer.isBuffer(chunk)) {
|
|
|
|
var op = asMinimalOP(chunk)
|
|
|
|
if (op === undefined) return chunk.toString('hex')
|
|
|
|
chunk = op
|
|
|
|
}
|
2016-09-28 00:44:21 +02:00
|
|
|
|
|
|
|
// opcode!
|
|
|
|
return REVERSE_OPS[chunk]
|
|
|
|
}).join(' ')
|
|
|
|
}
|
|
|
|
|
|
|
|
function fromASM (asm) {
|
|
|
|
typeforce(types.String, asm)
|
|
|
|
|
|
|
|
return compile(asm.split(' ').map(function (chunkStr) {
|
|
|
|
// opcode?
|
|
|
|
if (OPS[chunkStr] !== undefined) return OPS[chunkStr]
|
2016-12-17 04:29:42 +01:00
|
|
|
typeforce(types.Hex, chunkStr)
|
2016-09-28 00:44:21 +02:00
|
|
|
|
|
|
|
// data!
|
2017-04-19 09:24:58 +02:00
|
|
|
return Buffer.from(chunkStr, 'hex')
|
2016-09-28 00:44:21 +02:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2016-12-14 05:52:15 +01:00
|
|
|
function toStack (chunks) {
|
|
|
|
chunks = decompile(chunks)
|
2016-11-14 06:03:06 +01:00
|
|
|
typeforce(isPushOnly, chunks)
|
2016-11-14 01:17:27 +01:00
|
|
|
|
2016-11-14 05:28:27 +01:00
|
|
|
return chunks.map(function (op) {
|
|
|
|
if (Buffer.isBuffer(op)) return op
|
2017-04-19 09:24:58 +02:00
|
|
|
if (op === OPS.OP_0) return Buffer.allocUnsafe(0)
|
2016-11-14 05:28:27 +01:00
|
|
|
|
|
|
|
return scriptNumber.encode(op - OP_INT_BASE)
|
2016-11-14 01:17:27 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
function isCanonicalPubKey (buffer) {
|
2014-06-24 09:32:23 +02:00
|
|
|
if (!Buffer.isBuffer(buffer)) return false
|
2015-08-22 04:31:32 +02:00
|
|
|
if (buffer.length < 33) return false
|
|
|
|
|
|
|
|
switch (buffer[0]) {
|
|
|
|
case 0x02:
|
|
|
|
case 0x03:
|
|
|
|
return buffer.length === 33
|
|
|
|
case 0x04:
|
|
|
|
return buffer.length === 65
|
2014-06-24 09:32:23 +02:00
|
|
|
}
|
|
|
|
|
2015-08-22 04:31:32 +02:00
|
|
|
return false
|
2014-06-24 09:32:23 +02:00
|
|
|
}
|
|
|
|
|
2015-08-22 04:31:00 +02:00
|
|
|
function isDefinedHashType (hashType) {
|
|
|
|
var hashTypeMod = hashType & ~0x80
|
|
|
|
|
|
|
|
// return hashTypeMod > SIGHASH_ALL && hashTypeMod < SIGHASH_SINGLE
|
|
|
|
return hashTypeMod > 0x00 && hashTypeMod < 0x04
|
|
|
|
}
|
|
|
|
|
2016-09-28 00:44:21 +02:00
|
|
|
function isCanonicalSignature (buffer) {
|
|
|
|
if (!Buffer.isBuffer(buffer)) return false
|
|
|
|
if (!isDefinedHashType(buffer[buffer.length - 1])) return false
|
|
|
|
|
|
|
|
return bip66.check(buffer.slice(0, -1))
|
|
|
|
}
|
|
|
|
|
2016-11-02 02:30:37 +01:00
|
|
|
module.exports = {
|
|
|
|
compile: compile,
|
|
|
|
decompile: decompile,
|
|
|
|
fromASM: fromASM,
|
|
|
|
toASM: toASM,
|
2016-12-14 05:52:15 +01:00
|
|
|
toStack: toStack,
|
|
|
|
|
2016-11-02 02:30:37 +01:00
|
|
|
number: require('./script_number'),
|
2016-10-13 14:45:08 +02:00
|
|
|
signature: require('./script_signature'),
|
2014-06-24 09:32:23 +02:00
|
|
|
|
2016-11-02 02:30:37 +01:00
|
|
|
isCanonicalPubKey: isCanonicalPubKey,
|
|
|
|
isCanonicalSignature: isCanonicalSignature,
|
2016-12-14 05:52:15 +01:00
|
|
|
isPushOnly: isPushOnly,
|
2016-11-02 02:30:37 +01:00
|
|
|
isDefinedHashType: isDefinedHashType
|
2016-11-01 16:06:01 +01:00
|
|
|
}
|