-
Notifications
You must be signed in to change notification settings - Fork 0
/
security.go
73 lines (65 loc) · 2.1 KB
/
security.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
package gos7
// Copyright 2018 Trung Hieu Le. All rights reserved.
// This software may be modified and distributed under the terms
// of the BSD license. See the LICENSE file for details.
import (
"encoding/binary"
"fmt"
)
func (mb *client) SetSessionPassword(password string) error {
pwd := []byte{0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20}
// Encodes the Password
pwd = append(pwd[:0], append([]byte(password), pwd[0:]...)...)
pwd[0] = byte(pwd[0] ^ 0x55)
pwd[1] = byte(pwd[1] ^ 0x55)
for c := 2; c < 8; c++ {
pwd[c] = byte(pwd[c] ^ 0x55 ^ pwd[c-2])
}
requestData := make([]byte, len(s7SetPWDTelegram))
//copy from telegram base
copy(requestData, s7SetPWDTelegram)
//copy from pwd set
copy(requestData[29:29+8], pwd[0:8])
request := NewProtocolDataUnit(requestData)
//send
response, err := mb.send(&request)
if err == nil {
err = verifySecurityResponse(response.Data)
}
return err
}
func (mb *client) ClearSessionPassword() error {
requestData := make([]byte, len(s7ClearPWDTelegram))
//copy from telegram base
copy(requestData, s7ClearPWDTelegram)
request := ProtocolDataUnit{
Data: requestData,
}
//send
response, err := mb.send(&request)
if err == nil {
err = verifySecurityResponse(response.Data)
}
return err
}
func (mb *client) GetProtection() (protection S7Protection, err error) {
szl, _, err := mb.readSzl(0x0232, 0x0004)
if err == nil {
protection.schSchal = uint(binary.BigEndian.Uint16(szl.Data[2:]))
protection.schPar = uint(binary.BigEndian.Uint16(szl.Data[4:]))
protection.schRel = uint(binary.BigEndian.Uint16(szl.Data[6:]))
protection.bartSch = uint(binary.BigEndian.Uint16(szl.Data[8:]))
protection.anlSch = uint(binary.BigEndian.Uint16(szl.Data[10:]))
}
return
}
func verifySecurityResponse(response []byte) (err error) {
if length := len(response); length > 30 { // the minimum expected
if result := binary.BigEndian.Uint16(response[27:]); result != 0 {
err = fmt.Errorf(ErrorText(CPUError(uint(result))))
}
} else {
err = fmt.Errorf(ErrorText(errIsoInvalidPDU))
}
return err
}