-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscard.go
107 lines (93 loc) · 2.69 KB
/
scard.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
package scard
import (
"fmt"
"golang.org/x/sys/windows"
"log"
"syscall"
"unsafe"
)
var (
winscard = windows.MustLoadDLL("winscard.dll")
procSCardListCards = winscard.MustFindProc("SCardListCardsA")
procSCardFreeMemory = winscard.MustFindProc("SCardFreeMemory")
procSCardListReaders = winscard.MustFindProc("SCardListReadersA")
)
// wide returns a pointer to a a uint16 representing the equivalent
// to a Windows LPCWSTR.
func wide(s string) *uint16 {
w, _ := syscall.UTF16PtrFromString(s)
return w
}
func SCardListCards() ([]byte, error) {
var size uint32
// Get the size of the data to be returned
r, _, err := procSCardListCards.Call(
0, //[in] hContext
0, // [in, optional] pbAtr
0, // [in] rgquidInterfaces
0, // [in] cguidInterfaceCount
0, // [out] mszCards
uintptr(unsafe.Pointer(&size)),
)
if r != 0 {
return nil, fmt.Errorf("SCardListCards returned %v during size check: %w", uint32(r), err)
}
// Place the data in buf now that we know the size required
buf := make([]byte, size)
r, _, err = procSCardListCards.Call(
0, //[in] hContext
0, // [in, optional] pbAtr
0, // [in] rgquidInterfaces
0, // [in] cguidInterfaceCount
uintptr(unsafe.Pointer(&buf[0])),
uintptr(unsafe.Pointer(&size)),
)
if r != 0 {
return nil, fmt.Errorf("SCardListCards returned %v during convert: %w", uint32(r), err)
}
return buf, nil
}
func SCardListReaders() ([]string, error) {
var size uint32
// Get the size of the data to be returned
r, _, err := procSCardListReaders.Call(
0, //[in] hContext
0, // [in, optional] mszGroups
0, // [out] mszReaders
uintptr(unsafe.Pointer(&size)), // [in, out] pcchReaders
)
if r != 0 {
return nil, fmt.Errorf("SCardListCards returned %v during size check: %w", uint32(r), err)
}
// Place the data in buf now that we know the size required
buf := make([]byte, size)
r, _, err = procSCardListReaders.Call(
0, //[in] hContext
0, // [in, optional] mszGroups
uintptr(unsafe.Pointer(&buf[0])), // [out] mszReaders
uintptr(unsafe.Pointer(&size)), // [in, out] pcchReaders
)
if r != 0 {
return nil, fmt.Errorf("SCardListCards returned %v during convert: %w", uint32(r), err)
}
var readerList []string
var startIdx = 0
for i, b := range buf {
if b == 0x00 {
readerList = append(readerList, string(buf[startIdx:i]))
startIdx = i + 1
}
}
return readerList, nil
}
func SCardFreeMemory(ptr uintptr) error {
_, _, err := procSCardFreeMemory.Call(
0,
ptr,
)
if err != syscall.Errno(0) {
log.Printf("SCardFreeMemory returned %v", err)
return err
}
return err
}