-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtftp.go
126 lines (105 loc) · 3.21 KB
/
tftp.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
// Copyright 2016 Google Inc.
//
// 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 main
import (
"bytes"
"errors"
"fmt"
"io"
"net"
"os"
"path/filepath"
"strings"
"github.com/pin/tftp"
)
var (
ipxeFileName = "ipxe.efi"
undionlyFileName = "undionly.kpxe"
)
type TFTPHook struct {
}
func (h *TFTPHook) OnSuccess(stats tftp.TransferStats) {
log.Infof("Transferred %s to %s", stats.Filename, stats.RemoteAddr)
}
func (h *TFTPHook) OnFailure(stats tftp.TransferStats, err error) {
log.Errorf("TFTPHook Failure transferring %s to %s: %s", stats.Filename, stats.RemoteAddr, err)
if strings.Contains(err.Error(), "use of closed network connection") {
//time.Sleep(time.Second)
}
}
// readHandlerTFTP is called when client starts file download from server
func (s *Server) readHandlerTFTP(path string, rf io.ReaderFrom) error {
_, classId, classInfo, err := extractInfo(path)
if err != nil {
return fmt.Errorf("unknown path %q", path)
}
bs, err := s.prepIpxeContent(classId, classInfo)
if err != nil {
return err
}
rf.(tftp.OutgoingTransfer).SetSize(int64(len(bs)))
_, _ = rf.ReadFrom(bytes.NewBuffer(bs))
return nil
}
// prepIpxeContent serves ipxe menu or the ipxe.efi file
func (s *Server) prepIpxeContent(classId, classInfo string) ([]byte, error) {
if strings.Contains(classInfo, "iPXE") {
var chainBuffer bytes.Buffer
_ = chainLoadTemplate.Execute(&chainBuffer, s)
return chainBuffer.Bytes(), nil
}
if classId == "PXEClient:Arch:00000:UNDI:002001" {
data, err := os.ReadFile(filepath.Join(s.ServerRoot, undionlyFileName))
if err != nil {
return nil, err
}
return data, nil
} else if classId == "PXEClient:Arch:00007:UNDI:003001" {
data, err := os.ReadFile(filepath.Join(s.ServerRoot, ipxeFileName))
if err != nil {
return nil, err
}
return data, nil
} else if classId == "PXEClient:Arch:00007:UNDI:003016" {
data, err := os.ReadFile(filepath.Join(s.ServerRoot, ipxeFileName))
if err != nil {
return nil, err
}
return data, nil
}
return nil, fmt.Errorf("Unknown class %s:%s", classId, classInfo)
}
func (s *Server) serveTFTP(l net.PacketConn) error {
s.tFTPStarted = true
if err := s.serverTFTP.Serve(l); err != nil {
return fmt.Errorf("TFTP server shut down: %s", err)
}
return nil
}
func extractInfo(path string) (net.HardwareAddr, string, string, error) {
pathElements := strings.Split(path, "/")
if len(pathElements) != 3 {
return nil, "", "", errors.New("not found")
}
mac, err := net.ParseMAC(pathElements[0])
if err != nil {
return nil, "", "", fmt.Errorf("invalid MAC address %q", pathElements[0])
}
classId := pathElements[1]
classInfo := pathElements[2]
return mac, classId, classInfo, nil
}
func (s *Server) logInfo(msg string) {
log.Info(msg)
}