@@ -74,7 +74,7 @@ func signEntry(ctx context.Context, signer signature.Signer, entry models.LogEnt
74
74
}
75
75
76
76
// logEntryFromLeaf creates a signed LogEntry struct from trillian structs
77
- func logEntryFromLeaf (ctx context.Context , signer signature. Signer , _ trillianclient.TrillianClient , leaf * trillian.LogLeaf ,
77
+ func logEntryFromLeaf (ctx context.Context , _ trillianclient.TrillianClient , leaf * trillian.LogLeaf ,
78
78
signedLogRoot * trillian.SignedLogRoot , proof * trillian.Proof , tid int64 , ranges sharding.LogRanges ) (models.LogEntry , error ) {
79
79
80
80
log .ContextLogger (ctx ).Debugf ("log entry from leaf %d" , leaf .GetLeafIndex ())
@@ -88,19 +88,24 @@ func logEntryFromLeaf(ctx context.Context, signer signature.Signer, _ trilliancl
88
88
}
89
89
90
90
virtualIndex := sharding .VirtualLogIndex (leaf .GetLeafIndex (), tid , ranges )
91
+ logRange , err := ranges .GetLogRangeByTreeID (tid )
92
+ if err != nil {
93
+ return nil , err
94
+ }
95
+
91
96
logEntryAnon := models.LogEntryAnon {
92
- LogID : swag .String (api . pubkeyHash ),
97
+ LogID : swag .String (logRange . LogID ),
93
98
LogIndex : & virtualIndex ,
94
99
Body : leaf .LeafValue ,
95
100
IntegratedTime : swag .Int64 (leaf .IntegrateTimestamp .AsTime ().Unix ()),
96
101
}
97
102
98
- signature , err := signEntry (ctx , signer , logEntryAnon )
103
+ signature , err := signEntry (ctx , logRange . Signer , logEntryAnon )
99
104
if err != nil {
100
105
return nil , fmt .Errorf ("signing entry error: %w" , err )
101
106
}
102
107
103
- scBytes , err := util .CreateAndSignCheckpoint (ctx , viper .GetString ("rekor_server.hostname" ), tid , root .TreeSize , root .RootHash , api . signer )
108
+ scBytes , err := util .CreateAndSignCheckpoint (ctx , viper .GetString ("rekor_server.hostname" ), tid , root .TreeSize , root .RootHash , logRange . Signer )
104
109
if err != nil {
105
110
return nil , err
106
111
}
@@ -194,7 +199,7 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
194
199
return nil , handleRekorAPIError (params , http .StatusInternalServerError , err , failedToGenerateCanonicalEntry )
195
200
}
196
201
197
- tc := trillianclient .NewTrillianClient (ctx , api .logClient , api .logID )
202
+ tc := trillianclient .NewTrillianClient (ctx , api .logClient , api .treeID )
198
203
199
204
resp := tc .AddLeaf (leaf )
200
205
// this represents overall GRPC response state (not the results of insertion into the log)
@@ -209,7 +214,7 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
209
214
case int32 (code .Code_OK ):
210
215
case int32 (code .Code_ALREADY_EXISTS ), int32 (code .Code_FAILED_PRECONDITION ):
211
216
existingUUID := hex .EncodeToString (rfc6962 .DefaultHasher .HashLeaf (leaf ))
212
- activeTree := fmt .Sprintf ("%x" , api .logID )
217
+ activeTree := fmt .Sprintf ("%x" , api .treeID )
213
218
entryIDstruct , err := sharding .CreateEntryIDFromParts (activeTree , existingUUID )
214
219
if err != nil {
215
220
err := fmt .Errorf ("error creating EntryID from active treeID %v and uuid %v: %w" , activeTree , existingUUID , err )
@@ -230,7 +235,7 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
230
235
queuedLeaf := resp .GetAddResult .QueuedLeaf .Leaf
231
236
232
237
uuid := hex .EncodeToString (queuedLeaf .GetMerkleLeafHash ())
233
- activeTree := fmt .Sprintf ("%x" , api .logID )
238
+ activeTree := fmt .Sprintf ("%x" , api .treeID )
234
239
entryIDstruct , err := sharding .CreateEntryIDFromParts (activeTree , uuid )
235
240
if err != nil {
236
241
err := fmt .Errorf ("error creating EntryID from active treeID %v and uuid %v: %w" , activeTree , uuid , err )
@@ -239,9 +244,9 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
239
244
entryID := entryIDstruct .ReturnEntryIDString ()
240
245
241
246
// The log index should be the virtual log index across all shards
242
- virtualIndex := sharding .VirtualLogIndex (queuedLeaf .LeafIndex , api .logRanges .ActiveTreeID () , api .logRanges )
247
+ virtualIndex := sharding .VirtualLogIndex (queuedLeaf .LeafIndex , api .logRanges .GetActive (). TreeID , api .logRanges )
243
248
logEntryAnon := models.LogEntryAnon {
244
- LogID : swag .String (api .pubkeyHash ),
249
+ LogID : swag .String (api .logRanges . GetActive (). LogID ),
245
250
LogIndex : swag .Int64 (virtualIndex ),
246
251
Body : queuedLeaf .GetLeafValue (),
247
252
IntegratedTime : swag .Int64 (queuedLeaf .IntegrateTimestamp .AsTime ().Unix ()),
@@ -286,7 +291,7 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
286
291
}
287
292
}
288
293
289
- signature , err := signEntry (ctx , api .signer , logEntryAnon )
294
+ signature , err := signEntry (ctx , api .logRanges . GetActive (). Signer , logEntryAnon )
290
295
if err != nil {
291
296
return nil , handleRekorAPIError (params , http .StatusInternalServerError , fmt .Errorf ("signing entry error: %w" , err ), signingError )
292
297
}
@@ -300,7 +305,7 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
300
305
hashes = append (hashes , hex .EncodeToString (hash ))
301
306
}
302
307
303
- scBytes , err := util .CreateAndSignCheckpoint (ctx , viper .GetString ("rekor_server.hostname" ), api .logID , root .TreeSize , root .RootHash , api .signer )
308
+ scBytes , err := util .CreateAndSignCheckpoint (ctx , viper .GetString ("rekor_server.hostname" ), api .treeID , root .TreeSize , root .RootHash , api .logRanges . GetActive (). Signer )
304
309
if err != nil {
305
310
return nil , handleRekorAPIError (params , http .StatusInternalServerError , err , sthGenerateError )
306
311
}
@@ -511,7 +516,7 @@ func SearchLogQueryHandler(params entries.SearchLogQueryParams) middleware.Respo
511
516
continue
512
517
}
513
518
tcs := trillianclient .NewTrillianClient (httpReqCtx , api .logClient , shard )
514
- logEntry , err := logEntryFromLeaf (httpReqCtx , api . signer , tcs , leafResp .Leaf , leafResp .SignedLogRoot , leafResp .Proof , shard , api .logRanges )
519
+ logEntry , err := logEntryFromLeaf (httpReqCtx , tcs , leafResp .Leaf , leafResp .SignedLogRoot , leafResp .Proof , shard , api .logRanges )
515
520
if err != nil {
516
521
return handleRekorAPIError (params , http .StatusInternalServerError , err , err .Error ())
517
522
}
@@ -558,7 +563,7 @@ func retrieveLogEntryByIndex(ctx context.Context, logIndex int) (models.LogEntry
558
563
return models.LogEntry {}, ErrNotFound
559
564
}
560
565
561
- return logEntryFromLeaf (ctx , api . signer , tc , leaf , result .SignedLogRoot , result .Proof , tid , api .logRanges )
566
+ return logEntryFromLeaf (ctx , tc , leaf , result .SignedLogRoot , result .Proof , tid , api .logRanges )
562
567
}
563
568
564
569
// Retrieve a Log Entry
@@ -580,7 +585,7 @@ func retrieveLogEntry(ctx context.Context, entryUUID string) (models.LogEntry, e
580
585
581
586
// If we got a UUID instead of an EntryID, search all shards
582
587
if errors .Is (err , sharding .ErrPlainUUID ) {
583
- trees := []sharding.LogRange {{ TreeID : api .logRanges .ActiveTreeID ()} }
588
+ trees := []sharding.LogRange {api .logRanges .GetActive () }
584
589
trees = append (trees , api .logRanges .GetInactive ()... )
585
590
586
591
for _ , t := range trees {
@@ -623,7 +628,7 @@ func retrieveUUIDFromTree(ctx context.Context, uuid string, tid int64) (models.L
623
628
return models.LogEntry {}, err
624
629
}
625
630
626
- logEntry , err := logEntryFromLeaf (ctx , api . signer , tc , result .Leaf , result .SignedLogRoot , result .Proof , tid , api .logRanges )
631
+ logEntry , err := logEntryFromLeaf (ctx , tc , result .Leaf , result .SignedLogRoot , result .Proof , tid , api .logRanges )
627
632
if err != nil {
628
633
return models.LogEntry {}, fmt .Errorf ("could not create log entry from leaf: %w" , err )
629
634
}
0 commit comments