forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdspackage.go
300 lines (237 loc) · 8.55 KB
/
cdspackage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
Copyright IBM Corp. 2017 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package ccprovider
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/bccsp"
"github.com/hyperledger/fabric/bccsp/factory"
pb "github.com/hyperledger/fabric/protos/peer"
)
//----- CDSData ------
//CDSData is data stored in the LSCC on instantiation of a CC
//for CDSPackage. This needs to be serialized for ChaincodeData
//hence the protobuf format
type CDSData struct {
//CodeHash hash of CodePackage from ChaincodeDeploymentSpec
CodeHash []byte `protobuf:"bytes,1,opt,name=codehash,proto3"`
//MetaDataHash hash of Name and Version from ChaincodeDeploymentSpec
MetaDataHash []byte `protobuf:"bytes,2,opt,name=metadatahash,proto3"`
}
//----implement functions needed from proto.Message for proto's mar/unmarshal functions
//Reset resets
func (data *CDSData) Reset() { *data = CDSData{} }
//String converts to string
func (data *CDSData) String() string { return proto.CompactTextString(data) }
//ProtoMessage just exists to make proto happy
func (*CDSData) ProtoMessage() {}
//Equals data equals other
func (data *CDSData) Equals(other *CDSData) bool {
return other != nil && bytes.Equal(data.CodeHash, other.CodeHash) && bytes.Equal(data.MetaDataHash, other.MetaDataHash)
}
//--------- CDSPackage ------------
//CDSPackage encapsulates ChaincodeDeploymentSpec.
type CDSPackage struct {
buf []byte
depSpec *pb.ChaincodeDeploymentSpec
data *CDSData
datab []byte
id []byte
}
// resets data
func (ccpack *CDSPackage) reset() {
*ccpack = CDSPackage{}
}
// GetId gets the fingerprint of the chaincode based on package computation
func (ccpack *CDSPackage) GetId() []byte {
//this has to be after creating a package and initializing it
//If those steps fail, GetId() should never be called
if ccpack.id == nil {
panic("GetId called on uninitialized package")
}
return ccpack.id
}
// GetDepSpec gets the ChaincodeDeploymentSpec from the package
func (ccpack *CDSPackage) GetDepSpec() *pb.ChaincodeDeploymentSpec {
//this has to be after creating a package and initializing it
//If those steps fail, GetDepSpec() should never be called
if ccpack.depSpec == nil {
panic("GetDepSpec called on uninitialized package")
}
return ccpack.depSpec
}
// GetDepSpecBytes gets the serialized ChaincodeDeploymentSpec from the package
func (ccpack *CDSPackage) GetDepSpecBytes() []byte {
//this has to be after creating a package and initializing it
//If those steps fail, GetDepSpecBytes() should never be called
if ccpack.buf == nil {
panic("GetDepSpecBytes called on uninitialized package")
}
return ccpack.buf
}
// GetPackageObject gets the ChaincodeDeploymentSpec as proto.Message
func (ccpack *CDSPackage) GetPackageObject() proto.Message {
return ccpack.depSpec
}
// GetChaincodeData gets the ChaincodeData
func (ccpack *CDSPackage) GetChaincodeData() *ChaincodeData {
//this has to be after creating a package and initializing it
//If those steps fail, GetChaincodeData() should never be called
if ccpack.depSpec == nil || ccpack.datab == nil || ccpack.id == nil {
panic("GetChaincodeData called on uninitialized package")
}
return &ChaincodeData{Name: ccpack.depSpec.ChaincodeSpec.ChaincodeId.Name, Version: ccpack.depSpec.ChaincodeSpec.ChaincodeId.Version, Data: ccpack.datab, Id: ccpack.id}
}
func (ccpack *CDSPackage) getCDSData(cds *pb.ChaincodeDeploymentSpec) ([]byte, []byte, *CDSData, error) {
// check for nil argument. It is an assertion that getCDSData
// is never called on a package that did not go through/succeed
// package initialization.
if cds == nil {
panic("nil cds")
}
b, err := proto.Marshal(cds)
if err != nil {
return nil, nil, nil, err
}
if err = factory.InitFactories(nil); err != nil {
return nil, nil, nil, fmt.Errorf("Internal error, BCCSP could not be initialized : %s", err)
}
//compute hashes now
hash, err := factory.GetDefault().GetHash(&bccsp.SHAOpts{})
if err != nil {
return nil, nil, nil, err
}
cdsdata := &CDSData{}
//code hash
hash.Write(cds.CodePackage)
cdsdata.CodeHash = hash.Sum(nil)
hash.Reset()
//metadata hash
hash.Write([]byte(cds.ChaincodeSpec.ChaincodeId.Name))
hash.Write([]byte(cds.ChaincodeSpec.ChaincodeId.Version))
cdsdata.MetaDataHash = hash.Sum(nil)
b, err = proto.Marshal(cdsdata)
if err != nil {
return nil, nil, nil, err
}
hash.Reset()
//compute the id
hash.Write(cdsdata.CodeHash)
hash.Write(cdsdata.MetaDataHash)
id := hash.Sum(nil)
return b, id, cdsdata, nil
}
// ValidateCC returns error if the chaincode is not found or if its not a
// ChaincodeDeploymentSpec
func (ccpack *CDSPackage) ValidateCC(ccdata *ChaincodeData) error {
if ccpack.depSpec == nil {
return fmt.Errorf("uninitialized package")
}
if ccpack.data == nil {
return fmt.Errorf("nil data")
}
// This is a hack. LSCC expects a specific LSCC error when names are invalid so it
// has its own validation code. We can't use that error because of import cycles.
// Unfortunately, we also need to check if what have makes some sort of sense as
// protobuf will gladly deserialize garbage and there are paths where we assume that
// a successful unmarshal means everything works but, if it fails, we try to unmarshal
// into something different.
if !isPrintable(ccdata.Name) {
return fmt.Errorf("invalid chaincode name: %q", ccdata.Name)
}
if ccdata.Name != ccpack.depSpec.ChaincodeSpec.ChaincodeId.Name || ccdata.Version != ccpack.depSpec.ChaincodeSpec.ChaincodeId.Version {
return fmt.Errorf("invalid chaincode data %v (%v)", ccdata, ccpack.depSpec.ChaincodeSpec.ChaincodeId)
}
otherdata := &CDSData{}
err := proto.Unmarshal(ccdata.Data, otherdata)
if err != nil {
return err
}
if !ccpack.data.Equals(otherdata) {
return fmt.Errorf("data mismatch")
}
return nil
}
//InitFromBuffer sets the buffer if valid and returns ChaincodeData
func (ccpack *CDSPackage) InitFromBuffer(buf []byte) (*ChaincodeData, error) {
//incase ccpack is reused
ccpack.reset()
depSpec := &pb.ChaincodeDeploymentSpec{}
err := proto.Unmarshal(buf, depSpec)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal deployment spec from bytes")
}
databytes, id, data, err := ccpack.getCDSData(depSpec)
if err != nil {
return nil, err
}
ccpack.buf = buf
ccpack.depSpec = depSpec
ccpack.data = data
ccpack.datab = databytes
ccpack.id = id
return ccpack.GetChaincodeData(), nil
}
//InitFromFS returns the chaincode and its package from the file system
func (ccpack *CDSPackage) InitFromPath(ccname string, ccversion string, path string) ([]byte, *pb.ChaincodeDeploymentSpec, error) {
//incase ccpack is reused
ccpack.reset()
buf, err := GetChaincodePackageFromPath(ccname, ccversion, path)
if err != nil {
return nil, nil, err
}
ccdata, err := ccpack.InitFromBuffer(buf)
if err != nil {
return nil, nil, err
}
if err := ccpack.ValidateCC(ccdata); err != nil {
return nil, nil, err
}
return ccpack.buf, ccpack.depSpec, nil
}
//InitFromFS returns the chaincode and its package from the file system
func (ccpack *CDSPackage) InitFromFS(ccname string, ccversion string) ([]byte, *pb.ChaincodeDeploymentSpec, error) {
return ccpack.InitFromPath(ccname, ccversion, chaincodeInstallPath)
}
//PutChaincodeToFS - serializes chaincode to a package on the file system
func (ccpack *CDSPackage) PutChaincodeToFS() error {
if ccpack.buf == nil {
return fmt.Errorf("uninitialized package")
}
if ccpack.id == nil {
return fmt.Errorf("id cannot be nil if buf is not nil")
}
if ccpack.depSpec == nil {
return fmt.Errorf("depspec cannot be nil if buf is not nil")
}
if ccpack.data == nil {
return fmt.Errorf("nil data")
}
if ccpack.datab == nil {
return fmt.Errorf("nil data bytes")
}
ccname := ccpack.depSpec.ChaincodeSpec.ChaincodeId.Name
ccversion := ccpack.depSpec.ChaincodeSpec.ChaincodeId.Version
//return error if chaincode exists
path := fmt.Sprintf("%s/%s.%s", chaincodeInstallPath, ccname, ccversion)
if _, err := os.Stat(path); err == nil {
return fmt.Errorf("chaincode %s exists", path)
}
if err := ioutil.WriteFile(path, ccpack.buf, 0644); err != nil {
return err
}
return nil
}