updates and fixes on testing
This commit is contained in:
parent
4f8ef2757d
commit
eedac540df
@ -7,7 +7,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
// "fmt"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
@ -45,7 +45,7 @@ var BAUDS []uint = []uint{
|
|||||||
|
|
||||||
var AddressBook map[string]string = map[string]string{
|
var AddressBook map[string]string = map[string]string{
|
||||||
"54311": "shell.fr-par1.burble.dn42:23",
|
"54311": "shell.fr-par1.burble.dn42:23",
|
||||||
"42": "localhost:23",
|
"4242": "localhost:23",
|
||||||
}
|
}
|
||||||
|
|
||||||
var OnlyNumbers *regexp.Regexp = regexp.MustCompile("([^0-9]+)")
|
var OnlyNumbers *regexp.Regexp = regexp.MustCompile("([^0-9]+)")
|
||||||
@ -85,6 +85,7 @@ const (
|
|||||||
DTE_ATTN_1
|
DTE_ATTN_1
|
||||||
DTE_ATTN_2
|
DTE_ATTN_2
|
||||||
DTE_ATTN_3
|
DTE_ATTN_3
|
||||||
|
DTE_IAC
|
||||||
DTE_CONNECTED
|
DTE_CONNECTED
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -219,37 +220,44 @@ func (m *Modem) dteWrite(data []byte) {
|
|||||||
|
|
||||||
func (m *Modem) dceWrite(data []byte) {
|
func (m *Modem) dceWrite(data []byte) {
|
||||||
|
|
||||||
// step through the data in chunks
|
// check I'm actually connected
|
||||||
csize := int(m.bytesPerTimeslot())
|
if !m.connected {
|
||||||
for scan := 0; scan < len(data); {
|
return
|
||||||
|
|
||||||
// wait if necessary until we can send
|
|
||||||
now := time.Now()
|
|
||||||
if m.writeSlot.After(now) {
|
|
||||||
wtime := m.writeSlot.Sub(now)
|
|
||||||
fmt.Printf("waiting %d for write slot\n", wtime)
|
|
||||||
time.Sleep(wtime)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// send the data
|
// step through the data in chunks
|
||||||
end := scan + csize
|
max := int(m.bytesPerTimeslot())
|
||||||
|
|
||||||
|
for scan := 0; scan < len(data); {
|
||||||
|
|
||||||
|
// figure out what to send
|
||||||
|
end := scan + max
|
||||||
if end > len(data) {
|
if end > len(data) {
|
||||||
end = len(data)
|
end = len(data)
|
||||||
}
|
}
|
||||||
chunk := data[scan:end]
|
chunk := data[scan:end]
|
||||||
|
|
||||||
|
// wait if necessary until the write timeslot
|
||||||
|
now := time.Now()
|
||||||
|
if m.writeSlot.After(now) {
|
||||||
|
wtime := m.writeSlot.Sub(now)
|
||||||
|
time.Sleep(wtime)
|
||||||
|
}
|
||||||
|
|
||||||
|
// send the data
|
||||||
if _, err := m.dce.Write(chunk); err != nil {
|
if _, err := m.dce.Write(chunk); err != nil {
|
||||||
m.disconnect()
|
m.disconnect()
|
||||||
m.noCarrier()
|
m.noCarrier()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
scan += len(chunk)
|
|
||||||
|
|
||||||
// set the next available timeslot
|
// set the next available timeslot
|
||||||
tlen := time.Duration((9 * 1000 * 1000 * 1000 * len(chunk)) / int(m.baud))
|
tlen := time.Duration((9 * 1000 * 1000 * 1000 * len(chunk)) / int(m.baud))
|
||||||
fmt.Printf("%d chars, next write slot in %d\n", len(chunk), tlen)
|
|
||||||
m.writeSlot = now.Add(tlen)
|
m.writeSlot = now.Add(tlen)
|
||||||
}
|
|
||||||
|
|
||||||
|
// and move on
|
||||||
|
scan += len(chunk)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Modem) tnWrite(codes []TCode) {
|
func (m *Modem) tnWrite(codes []TCode) {
|
||||||
@ -279,7 +287,7 @@ func (m *Modem) connect(dial string) error {
|
|||||||
return errors.New("Address not found:" + dial)
|
return errors.New("Address not found:" + dial)
|
||||||
}
|
}
|
||||||
|
|
||||||
conn, err := net.Dial("tcp", endpoint)
|
conn, err := net.Dial("tcp6", endpoint)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"error": err,
|
"error": err,
|
||||||
@ -450,11 +458,17 @@ func (m *Modem) DTEReceive(baud uint, dte net.Conn) {
|
|||||||
case DTE_CONNECTED:
|
case DTE_CONNECTED:
|
||||||
// stream to DCE
|
// stream to DCE
|
||||||
|
|
||||||
|
// look ahead for control codes
|
||||||
start := scan
|
start := scan
|
||||||
|
SCAN:
|
||||||
for ; scan < available; scan++ {
|
for ; scan < available; scan++ {
|
||||||
if m.dteBuff[scan] == '+' {
|
switch m.dteBuff[scan] {
|
||||||
|
case '+':
|
||||||
m.mode = DTE_ATTN_1
|
m.mode = DTE_ATTN_1
|
||||||
break
|
break SCAN
|
||||||
|
case byte(TN_IAC):
|
||||||
|
m.mode = DTE_IAC
|
||||||
|
break SCAN
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -463,10 +477,16 @@ func (m *Modem) DTEReceive(baud uint, dte net.Conn) {
|
|||||||
m.dceWrite(data)
|
m.dceWrite(data)
|
||||||
|
|
||||||
if scan < available {
|
if scan < available {
|
||||||
// + was received, skip over it
|
// + or TN_IAC was received, skip over it
|
||||||
scan++
|
scan++
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case DTE_IAC:
|
||||||
|
// escape TN_IAC, _don't_ move scan as it
|
||||||
|
// has already been done in DTE_CONNECTED
|
||||||
|
m.dceWrite([]byte{byte(TN_IAC), byte(TN_IAC)})
|
||||||
|
m.mode = DTE_CONNECTED
|
||||||
|
|
||||||
case DTE_ATTN_1:
|
case DTE_ATTN_1:
|
||||||
if m.dteBuff[scan] == '+' {
|
if m.dteBuff[scan] == '+' {
|
||||||
m.mode = DTE_ATTN_2
|
m.mode = DTE_ATTN_2
|
||||||
@ -479,7 +499,6 @@ func (m *Modem) DTEReceive(baud uint, dte net.Conn) {
|
|||||||
|
|
||||||
case DTE_ATTN_2:
|
case DTE_ATTN_2:
|
||||||
if m.dteBuff[scan] == '+' {
|
if m.dteBuff[scan] == '+' {
|
||||||
|
|
||||||
scan++
|
scan++
|
||||||
if scan < available {
|
if scan < available {
|
||||||
// more bytes were available, no hangup
|
// more bytes were available, no hangup
|
||||||
@ -625,7 +644,6 @@ func (m *Modem) dceTelnet() {
|
|||||||
now := time.Now()
|
now := time.Now()
|
||||||
if m.readSlot.After(now) {
|
if m.readSlot.After(now) {
|
||||||
rtime := m.readSlot.Sub(now)
|
rtime := m.readSlot.Sub(now)
|
||||||
fmt.Printf("waiting %d for read slot\n", rtime)
|
|
||||||
time.Sleep(rtime)
|
time.Sleep(rtime)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -634,7 +652,6 @@ func (m *Modem) dceTelnet() {
|
|||||||
|
|
||||||
// set the next available timeslot
|
// set the next available timeslot
|
||||||
tlen := time.Duration((9 * 1000 * 1000 * 1000 * len(m.dceBuff)) / int(m.baud))
|
tlen := time.Duration((9 * 1000 * 1000 * 1000 * len(m.dceBuff)) / int(m.baud))
|
||||||
fmt.Printf("%d chars, next read slot in %d\n", len(m.dceBuff), tlen)
|
|
||||||
m.readSlot = now.Add(tlen)
|
m.readSlot = now.Add(tlen)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -682,8 +699,9 @@ func (m *Modem) dceTelnet() {
|
|||||||
|
|
||||||
switch code {
|
switch code {
|
||||||
case TN_IAC:
|
case TN_IAC:
|
||||||
// actually send 255
|
// actually send 255 and reset
|
||||||
m.dte.Write([]byte{byte(TN_IAC)})
|
m.dte.Write([]byte{byte(TN_IAC)})
|
||||||
|
m.state = TN_NORM
|
||||||
case TN_WILL:
|
case TN_WILL:
|
||||||
m.state = TN_WILL
|
m.state = TN_WILL
|
||||||
case TN_WONT:
|
case TN_WONT:
|
||||||
@ -742,6 +760,9 @@ func (m *Modem) dceTelnet() {
|
|||||||
switch code {
|
switch code {
|
||||||
case 0:
|
case 0:
|
||||||
// ignore binary confirmation
|
// ignore binary confirmation
|
||||||
|
case 1:
|
||||||
|
// won't echo
|
||||||
|
m.tnWrite([]TCode{TN_IAC, TN_WONT, code, TN_IAC, TN_DO, code})
|
||||||
case 3:
|
case 3:
|
||||||
// ignore GA confirmation
|
// ignore GA confirmation
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user