2023-01-11 07:33:14 +00:00
|
|
|
package frostfsid
|
2020-10-27 12:14:06 +00:00
|
|
|
|
|
|
|
import (
|
2023-03-07 11:06:21 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-contract/common"
|
2021-02-11 15:55:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
2021-06-30 10:59:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/contract"
|
2021-11-16 14:09:21 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/iterator"
|
2021-02-11 15:55:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/management"
|
2020-10-27 12:14:06 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/storage"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
UserInfo struct {
|
|
|
|
Keys [][]byte
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2021-11-30 11:27:12 +00:00
|
|
|
const (
|
|
|
|
ownerSize = 1 + interop.Hash160Len + 4
|
|
|
|
)
|
|
|
|
|
2020-10-27 12:14:06 +00:00
|
|
|
const (
|
|
|
|
netmapContractKey = "netmapScriptHash"
|
|
|
|
containerContractKey = "containerScriptHash"
|
2021-04-27 10:48:40 +00:00
|
|
|
notaryDisabledKey = "notary"
|
2021-11-16 14:09:21 +00:00
|
|
|
ownerKeysPrefix = 'o'
|
2020-10-27 12:14:06 +00:00
|
|
|
)
|
|
|
|
|
2021-05-12 08:31:07 +00:00
|
|
|
func _deploy(data interface{}, isUpdate bool) {
|
2021-11-16 14:09:21 +00:00
|
|
|
ctx := storage.GetContext()
|
|
|
|
|
2023-03-07 08:21:11 +00:00
|
|
|
common.RmAndCheckNotaryDisabledKey(data, notaryDisabledKey)
|
|
|
|
|
2021-06-03 07:49:07 +00:00
|
|
|
if isUpdate {
|
2021-12-27 08:49:30 +00:00
|
|
|
args := data.([]interface{})
|
|
|
|
common.CheckVersion(args[len(args)-1].(int))
|
2021-06-03 07:49:07 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-29 16:34:11 +00:00
|
|
|
args := data.(struct {
|
2023-03-07 08:21:11 +00:00
|
|
|
//TODO(@acid-ant): #9 remove notaryDisabled in future version
|
2021-11-29 16:34:11 +00:00
|
|
|
notaryDisabled bool
|
|
|
|
addrNetmap interop.Hash160
|
|
|
|
addrContainer interop.Hash160
|
|
|
|
})
|
2021-05-12 08:31:07 +00:00
|
|
|
|
2021-11-29 16:43:01 +00:00
|
|
|
if len(args.addrNetmap) != interop.Hash160Len || len(args.addrContainer) != interop.Hash160Len {
|
2021-11-29 10:51:57 +00:00
|
|
|
panic("incorrect length of contract script hash")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-29 16:34:11 +00:00
|
|
|
storage.Put(ctx, netmapContractKey, args.addrNetmap)
|
|
|
|
storage.Put(ctx, containerContractKey, args.addrContainer)
|
2020-10-27 12:14:06 +00:00
|
|
|
|
2023-01-11 07:33:14 +00:00
|
|
|
runtime.Log("frostfsid contract initialized")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 11:56:51 +00:00
|
|
|
// Update method updates contract source code and manifest. It can be invoked
|
2021-09-20 15:41:46 +00:00
|
|
|
// only by committee.
|
2021-09-21 12:58:37 +00:00
|
|
|
func Update(script []byte, manifest []byte, data interface{}) {
|
2021-09-20 15:41:46 +00:00
|
|
|
if !common.HasUpdateAccess() {
|
|
|
|
panic("only committee can update contract")
|
2021-02-11 15:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-09 10:55:21 +00:00
|
|
|
contract.Call(interop.Hash160(management.Hash), "update",
|
|
|
|
contract.All, script, manifest, common.AppendVersion(data))
|
2023-01-11 07:33:14 +00:00
|
|
|
runtime.Log("frostfsid contract updated")
|
2021-02-11 15:55:32 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 11:56:51 +00:00
|
|
|
// AddKey binds a list of the provided public keys to the OwnerID. It can be invoked only by
|
2021-07-13 18:08:27 +00:00
|
|
|
// Alphabet nodes.
|
|
|
|
//
|
2022-04-14 11:56:51 +00:00
|
|
|
// This method panics if the OwnerID is not an ownerSize byte or the public key is not 33 byte long.
|
|
|
|
// If the key is already bound, the method ignores it.
|
2021-05-21 11:37:31 +00:00
|
|
|
func AddKey(owner []byte, keys []interop.PublicKey) {
|
2021-11-29 17:58:27 +00:00
|
|
|
// V2 format
|
2021-11-30 11:27:12 +00:00
|
|
|
if len(owner) != ownerSize {
|
2021-11-29 10:51:57 +00:00
|
|
|
panic("incorrect owner")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 08:59:52 +00:00
|
|
|
for i := range keys {
|
|
|
|
if len(keys[i]) != interop.PublicKeyCompressedLen {
|
|
|
|
panic("incorrect public key")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-09 19:15:58 +00:00
|
|
|
ctx := storage.GetContext()
|
2021-11-30 08:59:52 +00:00
|
|
|
|
2023-02-10 15:07:44 +00:00
|
|
|
common.CheckAlphabetWitness()
|
2020-10-27 12:14:06 +00:00
|
|
|
|
2021-11-16 14:09:21 +00:00
|
|
|
ownerKey := append([]byte{ownerKeysPrefix}, owner...)
|
|
|
|
for i := range keys {
|
|
|
|
stKey := append(ownerKey, keys[i]...)
|
|
|
|
storage.Put(ctx, stKey, []byte{1})
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 09:02:59 +00:00
|
|
|
runtime.Log("key bound to the owner")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 11:56:51 +00:00
|
|
|
// RemoveKey unbinds the provided public keys from the OwnerID. It can be invoked only by
|
2021-07-13 18:08:27 +00:00
|
|
|
// Alphabet nodes.
|
|
|
|
//
|
2022-04-14 11:56:51 +00:00
|
|
|
// This method panics if the OwnerID is not an ownerSize byte or the public key is not 33 byte long.
|
|
|
|
// If the key is already unbound, the method ignores it.
|
2021-05-21 11:37:31 +00:00
|
|
|
func RemoveKey(owner []byte, keys []interop.PublicKey) {
|
2021-11-29 17:58:27 +00:00
|
|
|
// V2 format
|
2021-11-30 11:27:12 +00:00
|
|
|
if len(owner) != ownerSize {
|
2021-11-29 10:51:57 +00:00
|
|
|
panic("incorrect owner")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 08:59:52 +00:00
|
|
|
for i := range keys {
|
|
|
|
if len(keys[i]) != interop.PublicKeyCompressedLen {
|
|
|
|
panic("incorrect public key")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-09 19:15:58 +00:00
|
|
|
ctx := storage.GetContext()
|
2021-04-29 13:17:41 +00:00
|
|
|
|
2023-03-07 08:21:11 +00:00
|
|
|
multiaddr := common.AlphabetAddress()
|
|
|
|
if !runtime.CheckWitness(multiaddr) {
|
|
|
|
panic("invocation from non inner ring node")
|
2021-11-30 08:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ownerKey := append([]byte{ownerKeysPrefix}, owner...)
|
|
|
|
for i := range keys {
|
|
|
|
stKey := append(ownerKey, keys[i]...)
|
|
|
|
storage.Delete(ctx, stKey)
|
2021-04-29 13:17:41 +00:00
|
|
|
}
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 11:56:51 +00:00
|
|
|
// Key method returns a list of 33-byte public keys bound with the OwnerID.
|
2021-07-13 18:08:27 +00:00
|
|
|
//
|
2022-04-14 11:56:51 +00:00
|
|
|
// This method panics if the owner is not ownerSize byte long.
|
2020-10-27 12:14:06 +00:00
|
|
|
func Key(owner []byte) [][]byte {
|
2021-11-29 17:58:27 +00:00
|
|
|
// V2 format
|
2021-11-30 11:27:12 +00:00
|
|
|
if len(owner) != ownerSize {
|
2021-11-29 10:51:57 +00:00
|
|
|
panic("incorrect owner")
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 19:15:58 +00:00
|
|
|
ctx := storage.GetReadOnlyContext()
|
|
|
|
|
2021-11-16 14:09:21 +00:00
|
|
|
ownerKey := append([]byte{ownerKeysPrefix}, owner...)
|
|
|
|
info := getUserInfo(ctx, ownerKey)
|
2020-10-27 12:14:06 +00:00
|
|
|
|
|
|
|
return info.Keys
|
|
|
|
}
|
|
|
|
|
2022-04-14 11:56:51 +00:00
|
|
|
// Version returns the version of the contract.
|
2020-10-27 12:14:06 +00:00
|
|
|
func Version() int {
|
2021-07-29 11:44:53 +00:00
|
|
|
return common.Version
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getUserInfo(ctx storage.Context, key interface{}) UserInfo {
|
2021-11-16 14:09:21 +00:00
|
|
|
it := storage.Find(ctx, key, storage.KeysOnly|storage.RemovePrefix)
|
|
|
|
pubs := [][]byte{}
|
|
|
|
for iterator.Next(it) {
|
|
|
|
pub := iterator.Value(it).([]byte)
|
|
|
|
pubs = append(pubs, pub)
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-16 14:09:21 +00:00
|
|
|
return UserInfo{Keys: pubs}
|
2020-10-27 12:14:06 +00:00
|
|
|
}
|