-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathp11mod.go
994 lines (781 loc) · 27.7 KB
/
p11mod.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
// pkcs11mod
// Copyright (C) 2021-2022 Namecoin Developers
//
// pkcs11mod is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// pkcs11mod is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with pkcs11mod; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
package p11mod
import (
"errors"
"log"
"os"
"sync"
"github.com/miekg/pkcs11"
"github.com/miekg/pkcs11/p11"
"github.com/namecoin/pkcs11mod"
)
var (
trace bool
highBackend Backend
errHighBackend error
)
func SetBackend(b Backend, err error) {
highBackend = b
errHighBackend = err
}
func init() {
b := &llBackend{
slots: []p11.Slot{},
sessions: map[pkcs11.SessionHandle]*llSession{},
}
pkcs11mod.SetBackend(b)
if os.Getenv("P11MOD_TRACE") == "1" {
trace = true
}
}
type llSession struct {
session p11.Session
slotID uint
// Used to keep track of mapping between object handles and objects, because object handles don't exist in the p11 API
objects []p11.Object
objectsPending []p11.Object
signMechanism *pkcs11.Mechanism
signKeyIndex int
verifyMechanism *pkcs11.Mechanism
verifyKeyIndex int
}
type llBackend struct {
slots []p11.Slot
slotsMutex sync.RWMutex
sessions map[pkcs11.SessionHandle]*llSession
sessionsMutex sync.RWMutex
}
func (ll *llBackend) Initialize() error {
// Initialize() was already called by p11.OpenModule(), so there's
// nothing to do here other than check the error value.
if errHighBackend != nil {
log.Printf("p11mod Initialize: %s", errHighBackend)
return pkcs11.Error(pkcs11.CKR_GENERAL_ERROR)
}
if trace {
log.Printf("p11mod Initialize: success")
}
return nil
}
func (ll *llBackend) Finalize() error {
// p11 does not support Finalize(). Usually this is harmless though.
if trace {
log.Printf("p11mod Finalize: not supported by p11 API")
}
return nil
}
func (ll *llBackend) GetInfo() (pkcs11.Info, error) {
if trace {
log.Printf("p11mod GetInfo")
}
return highBackend.Info()
}
// Only call this when ll.slotsMutex is locked for writing.
func (ll *llBackend) updateSlots() error {
slots, err := highBackend.Slots()
if err != nil {
return err
}
ll.slots = slots
return nil
}
func (ll *llBackend) GetSlotList(tokenPresent bool) ([]uint, error) {
ll.slotsMutex.Lock()
defer ll.slotsMutex.Unlock()
if err := ll.updateSlots(); err != nil {
return nil, err
}
slots := ll.slots
ids := make([]uint, len(slots))
for i, slot := range slots {
ids[i] = slot.ID()
}
if trace {
log.Printf("p11mod GetSlotList: returned %d slots", len(ids))
}
return ids, nil
}
func (ll *llBackend) getSlotByID(slotID uint) (p11.Slot, error) {
// Fast path: if the ID is already known, we can use a read-only lock.
ll.slotsMutex.RLock()
for _, slot := range ll.slots {
if slot.ID() == slotID {
ll.slotsMutex.RUnlock()
return slot, nil
}
}
ll.slotsMutex.RUnlock()
// Slow path: the ID isn't known, so we need a write lock.
ll.slotsMutex.Lock()
defer ll.slotsMutex.Unlock()
if err := ll.updateSlots(); err != nil {
return p11.Slot{}, err
}
for _, slot := range ll.slots {
if slot.ID() == slotID {
return slot, nil
}
}
return p11.Slot{}, pkcs11.Error(pkcs11.CKR_SLOT_ID_INVALID)
}
func (ll *llBackend) GetSlotInfo(slotID uint) (pkcs11.SlotInfo, error) {
slot, err := ll.getSlotByID(slotID)
if err != nil {
return pkcs11.SlotInfo{}, err
}
if trace {
log.Printf("p11mod GetSlotInfo")
}
return slot.Info()
}
func (ll *llBackend) GetTokenInfo(slotID uint) (pkcs11.TokenInfo, error) {
slot, err := ll.getSlotByID(slotID)
if err != nil {
return pkcs11.TokenInfo{}, err
}
if trace {
log.Printf("p11mod GetTokenInfo")
}
return slot.TokenInfo()
}
func (ll *llBackend) GetMechanismList(slotID uint) ([]*pkcs11.Mechanism, error) {
slot, err := ll.getSlotByID(slotID)
if err != nil {
return []*pkcs11.Mechanism{}, err
}
_, err = slot.Mechanisms()
if err != nil {
return []*pkcs11.Mechanism{}, err
}
// TODO
log.Println("p11mod GetMechanismList: not implemented, see https://github.com/miekg/pkcs11/issues/158")
return []*pkcs11.Mechanism{}, nil
}
func (ll *llBackend) GetMechanismInfo(slotID uint, m []*pkcs11.Mechanism) (pkcs11.MechanismInfo, error) {
// TODO
log.Println("p11mod GetMechanismInfo: not implemented")
return pkcs11.MechanismInfo{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) InitPIN(sh pkcs11.SessionHandle, pin string) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
if trace {
log.Printf("p11mod InitPIN")
}
if err := session.session.InitPIN(pin); err != nil {
return err
}
return nil
}
func (ll *llBackend) SetPIN(sh pkcs11.SessionHandle, oldpin, newpin string) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
if trace {
log.Printf("p11mod SetPIN")
}
if err := session.session.SetPIN(oldpin, newpin); err != nil {
return err
}
return nil
}
// Only call this when ll.sessionsMutex is locked for reading.
func (ll *llBackend) nextAvailableSessionHandle() pkcs11.SessionHandle {
sessionHandle := pkcs11.SessionHandle(1)
for {
_, ok := ll.sessions[sessionHandle]
if !ok {
break
}
sessionHandle++
}
return sessionHandle
}
func (ll *llBackend) OpenSession(slotID, flags uint) (pkcs11.SessionHandle, error) {
slot, err := ll.getSlotByID(slotID)
if err != nil {
return 0, err
}
var session p11.Session
if flags&pkcs11.CKF_RW_SESSION != 0 {
session, err = slot.OpenWriteSession()
} else {
session, err = slot.OpenSession()
}
if err != nil {
return 0, err
}
ll.sessionsMutex.Lock()
defer ll.sessionsMutex.Unlock()
sessionHandle := ll.nextAvailableSessionHandle()
ll.sessions[sessionHandle] = &llSession{
session: session,
slotID: slotID,
objects: []p11.Object{},
objectsPending: []p11.Object{},
signMechanism: nil,
signKeyIndex: 0,
verifyMechanism: nil,
verifyKeyIndex: 0,
}
if trace {
log.Printf("p11mod OpenSession: returned handle %d", int(sessionHandle))
}
return sessionHandle, nil
}
func (ll *llBackend) getSessionByHandle(sh pkcs11.SessionHandle) (*llSession, error) {
ll.sessionsMutex.RLock()
defer ll.sessionsMutex.RUnlock()
session, ok := ll.sessions[sh]
if !ok {
return nil, pkcs11.Error(pkcs11.CKR_SESSION_HANDLE_INVALID)
}
return session, nil
}
func (ll *llBackend) CloseSession(sh pkcs11.SessionHandle) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
err = session.session.Close()
if err != nil {
return err
}
ll.sessionsMutex.Lock()
defer ll.sessionsMutex.Unlock()
delete(ll.sessions, sh)
if trace {
log.Printf("p11mod CloseSession: closed handle %d", int(sh))
}
return nil
}
func (ll *llBackend) CloseAllSessions(slotID uint) error {
slot, err := ll.getSlotByID(slotID)
if err != nil {
return err
}
err = slot.CloseAllSessions()
if err != nil {
return err
}
ll.sessionsMutex.Lock()
defer ll.sessionsMutex.Unlock()
// Delete all sessions with the specified slotID.
for sessionHandle, session := range ll.sessions {
if session.slotID == slotID {
delete(ll.sessions, sessionHandle)
}
}
if trace {
log.Printf("p11mod CloseAllSessions: closed all handles for slot %d", int(slotID))
}
return nil
}
func (ll *llBackend) GetSessionInfo(sh pkcs11.SessionHandle) (pkcs11.SessionInfo, error) {
// TODO
log.Println("p11mod GetSessionInfo: not implemented")
return pkcs11.SessionInfo{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) GetOperationState(sh pkcs11.SessionHandle) ([]byte, error) {
// TODO
log.Println("p11mod GetOperationState: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SetOperationState(sh pkcs11.SessionHandle, state []byte, encryptKey, authKey pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod SetOperationState: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) Login(sh pkcs11.SessionHandle, userType uint, pin string) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
if trace {
log.Printf("p11mod Login: user type %d", int(userType))
}
return session.session.LoginAs(userType, pin)
}
func (ll *llBackend) Logout(sh pkcs11.SessionHandle) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
if trace {
log.Println("p11mod Logout")
}
return session.session.Logout()
}
func (ll *llBackend) CreateObject(sh pkcs11.SessionHandle, temp []*pkcs11.Attribute) (pkcs11.ObjectHandle, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return 0, err
}
object, err := session.session.CreateObject(temp)
if err != nil {
return 0, err
}
session.objects = append(session.objects, object)
// 0 is never a valid object handle, as per PKCS#11 spec. So the object
// handle of the final object is its index + 1, which is the same as the
// length of the objects slice.
resultHandle := len(session.objects)
return pkcs11.ObjectHandle(resultHandle), nil
}
func (ll *llBackend) CopyObject(sh pkcs11.SessionHandle, o pkcs11.ObjectHandle, temp []*pkcs11.Attribute) (pkcs11.ObjectHandle, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return 0, err
}
// Handles are 1-indexed, while our slice is 0-indexed.
objectIndex := int(o - 1)
if objectIndex < 0 || objectIndex >= len(session.objects) {
log.Printf("p11mod CopyObject: Object index invalid: requested %d, object count %d\n", objectIndex,
len(session.objects))
return 0, pkcs11.Error(pkcs11.CKR_OBJECT_HANDLE_INVALID)
}
object := session.objects[objectIndex]
objectc, err := object.Copy(temp)
if err != nil {
return 0, err
}
session.objects = append(session.objects, objectc)
// 0 is never a valid object handle, as per PKCS#11 spec. So the object
// handle of the final object is its index + 1, which is the same as the
// length of the objects slice.
resultHandle := len(session.objects)
return pkcs11.ObjectHandle(resultHandle), nil
}
func (ll *llBackend) DestroyObject(sh pkcs11.SessionHandle, oh pkcs11.ObjectHandle) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
// Handles are 1-indexed, while our slice is 0-indexed.
objectIndex := int(oh - 1)
if objectIndex < 0 || objectIndex >= len(session.objects) {
log.Printf("p11mod DestroyObject: object index invalid: requested %d, object count %d\n", objectIndex, len(session.objects))
return pkcs11.Error(pkcs11.CKR_OBJECT_HANDLE_INVALID)
}
object := session.objects[objectIndex]
return object.Destroy()
}
func (ll *llBackend) GetObjectSize(sh pkcs11.SessionHandle, oh pkcs11.ObjectHandle) (uint, error) {
// TODO
log.Println("p11mod GetObjectSize: not implemented")
return 0, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) GetAttributeValue(sh pkcs11.SessionHandle, oh pkcs11.ObjectHandle, a []*pkcs11.Attribute) ([]*pkcs11.Attribute, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
log.Printf("p11mod GetAttributeValue: %v", err)
return []*pkcs11.Attribute{}, err
}
// Handles are 1-indexed, while our slice is 0-indexed.
objectIndex := int(oh - 1)
if objectIndex < 0 || objectIndex >= len(session.objects) {
log.Printf("p11mod GetAttributeValue: object index invalid: requested %d, object count %d\n", objectIndex, len(session.objects))
return []*pkcs11.Attribute{}, pkcs11.Error(pkcs11.CKR_OBJECT_HANDLE_INVALID)
}
object := session.objects[objectIndex]
result := make([]*pkcs11.Attribute, len(a))
for i, t := range a {
if trace {
log.Printf("p11mod GetAttributeValue: querying %s", pkcs11mod.AttrTrace(t))
}
value, err := object.Attribute(t.Type)
if err != nil && !errors.Is(err, p11.ErrAttributeNotFound) && !errors.Is(err, p11.ErrTooManyAttributesFound) {
log.Printf("p11mod GetAttributeValue: %v", err)
return nil, err
}
if value == nil {
// CKR_ATTRIBUTE_TYPE_INVALID, ErrAttributeNotFound, or ErrTooManyAttributesFound
log.Println("p11mod GetAttributeValue: suppressing CKR_ATTRIBUTE_TYPE_INVALID. " +
"The module may be unaware of an attribute type that the application wants.")
value = []byte{}
}
result[i] = &pkcs11.Attribute{
Type: t.Type,
Value: value,
}
}
if trace {
log.Printf("p11mod GetAttributeValue: %d values returned", len(result))
}
return result, nil
}
func (ll *llBackend) SetAttributeValue(sh pkcs11.SessionHandle, o pkcs11.ObjectHandle, a []*pkcs11.Attribute) error {
// TODO
log.Println("p11mod SetAttributeValue: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) FindObjectsInit(sh pkcs11.SessionHandle, template []*pkcs11.Attribute) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
log.Printf("p11mod FindObjectsInit: %v", err)
return err
}
objects, err := session.session.FindObjects(template)
if err != nil {
// Often harmless, e.g. p11.ErrNoObjectsFound
if trace {
log.Printf("p11mod FindObjectsInit: %v", err)
}
switch {
case errors.Is(err, pkcs11.Error(pkcs11.CKR_OPERATION_NOT_INITIALIZED)):
// session.FindObjects() can relay CKR_OPERATION_NOT_INITIALIZED from
// FindObjects or FindObjectsFinal, but PKCS#11 spec says
// FindObjectsInit cannot return CKR_OPERATION_NOT_INITIALIZED. So we
// have to return a different error.
return pkcs11.Error(pkcs11.CKR_FUNCTION_FAILED)
case errors.Is(err, p11.ErrNoObjectsFound):
objects = []p11.Object{}
default:
return err
}
}
if trace {
log.Printf("p11mod FindObjectsInit: %d objects returned", len(objects))
}
session.objects = append(session.objects, objects...)
session.objectsPending = objects
return nil
}
func (ll *llBackend) FindObjects(sh pkcs11.SessionHandle, max int) ([]pkcs11.ObjectHandle, bool, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return []pkcs11.ObjectHandle{}, false, err
}
// 0 is never a valid object handle, as per PKCS#11 spec. So if all
// objects are still pending, this returns 1.
resultHandle := len(session.objects) - len(session.objectsPending) + 1
numResults := len(session.objectsPending)
if numResults > max {
numResults = max
}
results := make([]pkcs11.ObjectHandle, numResults)
for i := range results {
results[i] = pkcs11.ObjectHandle(resultHandle)
resultHandle++
}
session.objectsPending = session.objectsPending[numResults:]
return results, false, nil
}
func (ll *llBackend) FindObjectsFinal(sh pkcs11.SessionHandle) error {
_, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
return nil
}
func (ll *llBackend) EncryptInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, o pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod EncryptInit: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) Encrypt(sh pkcs11.SessionHandle, message []byte) ([]byte, error) {
// TODO
log.Println("p11mod Encrypt: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) EncryptUpdate(sh pkcs11.SessionHandle, plain []byte) ([]byte, error) {
// TODO
log.Println("p11mod EncryptUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) EncryptFinal(sh pkcs11.SessionHandle) ([]byte, error) {
// TODO
log.Println("p11mod EncryptFinal: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DecryptInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, o pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod DecryptInit: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) Decrypt(sh pkcs11.SessionHandle, cipher []byte) ([]byte, error) {
// TODO
log.Println("p11mod Decrypt: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DecryptUpdate(sh pkcs11.SessionHandle, cipher []byte) ([]byte, error) {
// TODO
log.Println("p11mod DecryptUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DecryptFinal(sh pkcs11.SessionHandle) ([]byte, error) {
// TODO
log.Println("p11mod DecryptFinal: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DigestInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism) error {
// TODO
log.Println("p11mod DigestInit: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) Digest(sh pkcs11.SessionHandle, message []byte) ([]byte, error) {
// TODO
log.Println("p11mod Digest: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DigestUpdate(sh pkcs11.SessionHandle, message []byte) error {
// TODO
log.Println("p11mod DigestUpdate: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DigestKey(sh pkcs11.SessionHandle, key pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod DigestKey: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DigestFinal(sh pkcs11.SessionHandle) ([]byte, error) {
// TODO
log.Println("p11mod DigestFinal: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SignInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, o pkcs11.ObjectHandle) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
// Handles are 1-indexed, while our slice is 0-indexed.
objectIndex := int(o - 1)
if objectIndex < 0 || objectIndex >= len(session.objects) {
log.Printf("p11mod SignInit: key index invalid: requested %d, object count %d\n", objectIndex, len(session.objects))
return pkcs11.Error(pkcs11.CKR_KEY_HANDLE_INVALID)
}
if len(m) != 1 {
log.Println("p11mod SignInit: expected exactly one mechanism")
return pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
if m[0] == nil {
log.Println("p11mod SignInit: nil mechanism")
return pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
session.signMechanism = m[0]
session.signKeyIndex = objectIndex
return nil
}
func (ll *llBackend) Sign(sh pkcs11.SessionHandle, message []byte) ([]byte, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return nil, err
}
if session.signMechanism == nil {
return nil, pkcs11.Error(pkcs11.CKR_OPERATION_NOT_INITIALIZED)
}
// Inactivate the signature operation regardless of whether Sign errors.
defer func() {
session.signMechanism = nil
session.signKeyIndex = 0
}()
priv := p11.PrivateKey(session.objects[session.signKeyIndex])
signature, err := priv.Sign(*session.signMechanism, message)
if err != nil {
if errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_FUNCTION_NOT_PERMITTED)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_HANDLE_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_SIZE_RANGE)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_TYPE_INCONSISTENT)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_MECHANISM_PARAM_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_OPERATION_ACTIVE)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_PIN_EXPIRED)) {
// priv.Sign() can relay these error values from SignInit, but
// PKCS#11 spec says Sign cannot return these. So we have to
// return a different error.
return nil, pkcs11.Error(pkcs11.CKR_FUNCTION_FAILED)
}
return nil, err
}
return signature, nil
}
func (ll *llBackend) SignUpdate(sh pkcs11.SessionHandle, message []byte) error {
// TODO
log.Println("p11mod SignUpdate: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SignFinal(sh pkcs11.SessionHandle) ([]byte, error) {
// TODO
log.Println("p11mod SignFinal: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SignRecoverInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, key pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod SignRecoverInit: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SignRecover(sh pkcs11.SessionHandle, data []byte) ([]byte, error) {
// TODO
log.Println("p11mod SignRecover: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) VerifyInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, key pkcs11.ObjectHandle) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
// Handles are 1-indexed, while our slice is 0-indexed.
objectIndex := int(key - 1)
if objectIndex < 0 || objectIndex >= len(session.objects) {
log.Printf("p11mod VerifyInit: key index invalid: requested %d, object count %d\n", objectIndex, len(session.objects))
return pkcs11.Error(pkcs11.CKR_KEY_HANDLE_INVALID)
}
if len(m) != 1 {
log.Println("p11mod VerifyInit: expected exactly one mechanism")
return pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
if m[0] == nil {
log.Println("p11mod VerifyInit: nil mechanism")
return pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
session.verifyMechanism = m[0]
session.verifyKeyIndex = objectIndex
return nil
}
func (ll *llBackend) Verify(sh pkcs11.SessionHandle, data, signature []byte) error {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return err
}
if session.verifyMechanism == nil {
return pkcs11.Error(pkcs11.CKR_OPERATION_NOT_INITIALIZED)
}
// Inactivate the verification operation regardless of whether Verify errors.
defer func() {
session.verifyMechanism = nil
session.verifyKeyIndex = 0
}()
pub := p11.PublicKey(session.objects[session.verifyKeyIndex])
err = pub.Verify(*session.verifyMechanism, data, signature)
if err != nil {
if errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_FUNCTION_NOT_PERMITTED)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_HANDLE_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_SIZE_RANGE)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_KEY_TYPE_INCONSISTENT)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_MECHANISM_PARAM_INVALID)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_OPERATION_ACTIVE)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_PIN_EXPIRED)) || errors.Is(err, pkcs11.Error(pkcs11.CKR_USER_NOT_LOGGED_IN)) {
// pub.Verify() can relay these error values from VerifyInit, but
// PKCS#11 spec says Verify cannot return these. So we have to
// return a different error.
return pkcs11.Error(pkcs11.CKR_FUNCTION_FAILED)
}
return err
}
return nil
}
func (ll *llBackend) VerifyUpdate(sh pkcs11.SessionHandle, part []byte) error {
// TODO
log.Println("p11mod VerifyUpdate: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) VerifyFinal(sh pkcs11.SessionHandle, signature []byte) error {
// TODO
log.Println("p11mod VerifyFinal: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) VerifyRecoverInit(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, key pkcs11.ObjectHandle) error {
// TODO
log.Println("p11mod VerifyRecoverInit: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) VerifyRecover(sh pkcs11.SessionHandle, signature []byte) ([]byte, error) {
// TODO
log.Println("p11mod VerifyRecover: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DigestEncryptUpdate(sh pkcs11.SessionHandle, part []byte) ([]byte, error) {
// TODO
log.Println("p11mod DigestEncryptUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DecryptDigestUpdate(sh pkcs11.SessionHandle, cipher []byte) ([]byte, error) {
// TODO
log.Println("p11mod DecryptDigestUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SignEncryptUpdate(sh pkcs11.SessionHandle, part []byte) ([]byte, error) {
// TODO
log.Println("p11mod SignEncryptUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DecryptVerifyUpdate(sh pkcs11.SessionHandle, cipher []byte) ([]byte, error) {
// TODO
log.Println("p11mod DecryptVerifyUpdate: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) GenerateKey(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, temp []*pkcs11.Attribute) (pkcs11.ObjectHandle, error) {
// TODO
log.Println("p11mod GenerateKey: not implemented")
return 0, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) GenerateKeyPair(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, public, private []*pkcs11.Attribute) (pkcs11.ObjectHandle, pkcs11.ObjectHandle, error) {
session, err := ll.getSessionByHandle(sh)
if err != nil {
return 0, 0, err
}
if len(m) != 1 {
log.Println("p11mod GenerateKeyPair: expected exactly one mechanism")
return 0, 0, pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
if m[0] == nil {
log.Println("p11mod GenerateKeyPair: nil mechanism")
return 0, 0, pkcs11.Error(pkcs11.CKR_MECHANISM_INVALID)
}
request := p11.GenerateKeyPairRequest{
Mechanism: *m[0],
PublicKeyAttributes: public,
PrivateKeyAttributes: private,
}
pair, err := session.session.GenerateKeyPair(request)
if err != nil {
return 0, 0, err
}
session.objects = append(session.objects, p11.Object(pair.Public))
// 0 is never a valid object handle, as per PKCS#11 spec. So the object
// handle of the final object is its index + 1, which is the same as the
// length of the objects slice.
publicHandle := len(session.objects)
session.objects = append(session.objects, p11.Object(pair.Private))
// 0 is never a valid object handle, as per PKCS#11 spec. So the object
// handle of the final object is its index + 1, which is the same as the
// length of the objects slice.
privateHandle := len(session.objects)
return pkcs11.ObjectHandle(publicHandle), pkcs11.ObjectHandle(privateHandle), nil
}
func (ll *llBackend) WrapKey(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, wrappingkey, key pkcs11.ObjectHandle) ([]byte, error) {
// TODO
log.Println("p11mod WrapKey: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) UnwrapKey(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, unwrappingkey pkcs11.ObjectHandle, wrappedkey []byte, a []*pkcs11.Attribute) (pkcs11.ObjectHandle, error) {
// TODO
log.Println("p11mod UnwrapKey: not implemented")
return 0, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) DeriveKey(sh pkcs11.SessionHandle, m []*pkcs11.Mechanism, basekey pkcs11.ObjectHandle, a []*pkcs11.Attribute) (pkcs11.ObjectHandle, error) {
// TODO
log.Println("p11mod DeriveKey: not implemented")
return 0, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) SeedRandom(sh pkcs11.SessionHandle, seed []byte) error {
// TODO
log.Println("p11mod SeedRandom: not implemented")
return pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) GenerateRandom(sh pkcs11.SessionHandle, length int) ([]byte, error) {
// TODO
log.Println("p11mod GenerateRandom: not implemented")
return []byte{}, pkcs11.Error(pkcs11.CKR_FUNCTION_NOT_SUPPORTED)
}
func (ll *llBackend) WaitForSlotEvent(flags uint) chan pkcs11.SlotEvent {
sl := make(chan pkcs11.SlotEvent, 1)
// TODO
log.Println("p11mod WaitForSlotEvent: not implemented")
return sl
}