2019-12-05 09:36:58 -05:00
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2021-01-16 01:11:51 -05:00
|
|
|
|
"crypto/tls"
|
2021-08-17 23:56:54 -04:00
|
|
|
|
"encoding/json"
|
2021-01-15 11:45:49 -05:00
|
|
|
|
"errors"
|
2019-12-07 05:14:40 -05:00
|
|
|
|
"fmt"
|
2021-08-17 23:56:54 -04:00
|
|
|
|
"io"
|
2019-12-05 09:36:58 -05:00
|
|
|
|
"log"
|
2021-01-15 11:45:49 -05:00
|
|
|
|
"net"
|
|
|
|
|
"net/http"
|
2021-05-08 04:11:13 -04:00
|
|
|
|
"net/url"
|
2019-12-08 10:49:38 -05:00
|
|
|
|
"os"
|
2021-01-18 20:59:04 -05:00
|
|
|
|
"os/exec"
|
2019-12-07 05:14:40 -05:00
|
|
|
|
"time"
|
2019-12-05 09:36:58 -05:00
|
|
|
|
|
2020-11-29 11:07:27 -05:00
|
|
|
|
"github.com/blang/semver"
|
2021-01-15 11:45:49 -05:00
|
|
|
|
"github.com/genkiroid/cert"
|
|
|
|
|
"github.com/go-ping/ping"
|
2021-08-17 23:56:54 -04:00
|
|
|
|
"github.com/gorilla/websocket"
|
2020-12-12 12:31:22 -05:00
|
|
|
|
"github.com/p14yground/go-github-selfupdate/selfupdate"
|
2021-08-27 08:30:36 -04:00
|
|
|
|
flag "github.com/spf13/pflag"
|
2019-12-05 09:36:58 -05:00
|
|
|
|
"google.golang.org/grpc"
|
2019-12-05 10:42:20 -05:00
|
|
|
|
|
2021-03-20 02:53:10 -04:00
|
|
|
|
"github.com/naiba/nezha/cmd/agent/monitor"
|
2021-08-18 05:42:26 -04:00
|
|
|
|
"github.com/naiba/nezha/cmd/agent/processgroup"
|
|
|
|
|
"github.com/naiba/nezha/cmd/agent/pty"
|
2020-11-10 21:07:45 -05:00
|
|
|
|
"github.com/naiba/nezha/model"
|
2021-01-28 10:19:59 -05:00
|
|
|
|
"github.com/naiba/nezha/pkg/utils"
|
2020-11-10 21:07:45 -05:00
|
|
|
|
pb "github.com/naiba/nezha/proto"
|
|
|
|
|
"github.com/naiba/nezha/service/rpc"
|
2019-12-05 09:36:58 -05:00
|
|
|
|
)
|
|
|
|
|
|
2021-05-21 22:56:30 -04:00
|
|
|
|
func init() {
|
|
|
|
|
cert.TimeoutSeconds = 30
|
|
|
|
|
http.DefaultClient.Timeout = time.Second * 5
|
2021-08-27 08:30:36 -04:00
|
|
|
|
flag.CommandLine.ParseErrorsWhitelist.UnknownFlags = true
|
2021-05-21 22:56:30 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-08 10:49:38 -05:00
|
|
|
|
var (
|
2021-08-16 11:26:38 -04:00
|
|
|
|
server, clientSecret, version string
|
|
|
|
|
debug bool
|
|
|
|
|
stateConf monitor.GetStateConfig
|
2019-12-08 10:49:38 -05:00
|
|
|
|
)
|
|
|
|
|
|
2020-11-30 01:24:00 -05:00
|
|
|
|
var (
|
2021-05-21 22:56:30 -04:00
|
|
|
|
client pb.NezhaServiceClient
|
2021-07-16 06:09:50 -04:00
|
|
|
|
inited bool
|
2021-05-21 22:56:30 -04:00
|
|
|
|
updateCh = make(chan struct{}) // Agent 自动更新间隔
|
|
|
|
|
httpClient = &http.Client{
|
2021-01-20 20:37:29 -05:00
|
|
|
|
Transport: &http.Transport{
|
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
|
|
|
},
|
|
|
|
|
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
|
|
|
|
return http.ErrUseLastResponse
|
|
|
|
|
},
|
2021-05-21 22:56:30 -04:00
|
|
|
|
Timeout: time.Second * 30,
|
2021-01-20 20:37:29 -05:00
|
|
|
|
}
|
2020-11-30 01:24:00 -05:00
|
|
|
|
)
|
|
|
|
|
|
2021-05-21 22:56:30 -04:00
|
|
|
|
const (
|
|
|
|
|
delayWhenError = time.Second * 10 // Agent 重连间隔
|
2021-06-11 23:37:47 -04:00
|
|
|
|
networkTimeOut = time.Second * 5 // 普通网络超时
|
2021-05-21 22:56:30 -04:00
|
|
|
|
)
|
2021-01-17 02:43:34 -05:00
|
|
|
|
|
2019-12-05 09:36:58 -05:00
|
|
|
|
func main() {
|
2020-11-29 23:45:51 -05:00
|
|
|
|
// 来自于 GoReleaser 的版本号
|
2021-07-08 12:01:58 -04:00
|
|
|
|
monitor.Version = version
|
2019-12-08 10:49:38 -05:00
|
|
|
|
|
2021-08-27 08:30:36 -04:00
|
|
|
|
flag.BoolVarP(&debug, "debug", "d", false, "开启调试信息")
|
|
|
|
|
flag.StringVarP(&server, "*server", "s", "localhost:5555", "管理面板RPC端口")
|
|
|
|
|
flag.StringVarP(&clientSecret, "password", "p", "", "Agent连接Secret")
|
|
|
|
|
flag.BoolVar(&stateConf.SkipConnectionCount, "skip-conn", false, "不监控连接数")
|
2021-01-30 04:10:51 -05:00
|
|
|
|
flag.Parse()
|
|
|
|
|
|
2021-08-27 08:30:36 -04:00
|
|
|
|
if clientSecret == "" {
|
2021-01-30 04:10:51 -05:00
|
|
|
|
flag.Usage()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
run()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func run() {
|
2019-12-09 03:02:49 -05:00
|
|
|
|
auth := rpc.AuthHandler{
|
|
|
|
|
ClientSecret: clientSecret,
|
2019-12-05 09:36:58 -05:00
|
|
|
|
}
|
2019-12-10 04:57:57 -05:00
|
|
|
|
|
2021-08-18 05:42:26 -04:00
|
|
|
|
go pty.DownloadDependency()
|
|
|
|
|
|
2019-12-10 04:57:57 -05:00
|
|
|
|
// 上报服务器信息
|
|
|
|
|
go reportState()
|
2021-03-20 11:50:16 -04:00
|
|
|
|
// 更新IP信息
|
|
|
|
|
go monitor.UpdateIP()
|
2019-12-10 04:57:57 -05:00
|
|
|
|
|
2021-05-21 22:56:30 -04:00
|
|
|
|
if _, err := semver.Parse(version); err == nil {
|
2020-12-19 10:27:59 -05:00
|
|
|
|
go func() {
|
|
|
|
|
for range updateCh {
|
|
|
|
|
go doSelfUpdate()
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
updateCh <- struct{}{}
|
|
|
|
|
}
|
2020-11-29 11:07:27 -05:00
|
|
|
|
|
2019-12-10 04:57:57 -05:00
|
|
|
|
var err error
|
|
|
|
|
var conn *grpc.ClientConn
|
|
|
|
|
|
2020-02-09 09:04:59 -05:00
|
|
|
|
retry := func() {
|
2021-07-16 06:09:50 -04:00
|
|
|
|
inited = false
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("Error to close connection ...")
|
2020-02-09 09:04:59 -05:00
|
|
|
|
if conn != nil {
|
|
|
|
|
conn.Close()
|
|
|
|
|
}
|
|
|
|
|
time.Sleep(delayWhenError)
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("Try to reconnect ...")
|
2020-02-09 09:04:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-09 05:14:31 -05:00
|
|
|
|
for {
|
2021-06-11 23:37:47 -04:00
|
|
|
|
timeOutCtx, cancel := context.WithTimeout(context.Background(), networkTimeOut)
|
2021-05-21 22:56:30 -04:00
|
|
|
|
conn, err = grpc.DialContext(timeOutCtx, server, grpc.WithInsecure(), grpc.WithPerRPCCredentials(&auth))
|
2019-12-09 03:02:49 -05:00
|
|
|
|
if err != nil {
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("grpc.Dial err: ", err)
|
2021-05-21 22:56:30 -04:00
|
|
|
|
cancel()
|
2019-12-09 05:14:31 -05:00
|
|
|
|
retry()
|
2019-12-09 03:02:49 -05:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-05-21 22:56:30 -04:00
|
|
|
|
cancel()
|
2019-12-09 03:02:49 -05:00
|
|
|
|
client = pb.NewNezhaServiceClient(conn)
|
|
|
|
|
// 第一步注册
|
2021-06-11 23:37:47 -04:00
|
|
|
|
timeOutCtx, cancel = context.WithTimeout(context.Background(), networkTimeOut)
|
|
|
|
|
_, err = client.ReportSystemInfo(timeOutCtx, monitor.GetHost().PB())
|
2019-12-09 05:14:31 -05:00
|
|
|
|
if err != nil {
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("client.ReportSystemInfo err: ", err)
|
2021-06-11 23:37:47 -04:00
|
|
|
|
cancel()
|
2019-12-09 05:14:31 -05:00
|
|
|
|
retry()
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-06-11 23:37:47 -04:00
|
|
|
|
cancel()
|
2021-07-16 06:09:50 -04:00
|
|
|
|
inited = true
|
2021-01-15 11:45:49 -05:00
|
|
|
|
// 执行 Task
|
2021-06-11 23:51:26 -04:00
|
|
|
|
tasks, err := client.RequestTask(context.Background(), monitor.GetHost().PB())
|
2019-12-09 03:02:49 -05:00
|
|
|
|
if err != nil {
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("client.RequestTask err: ", err)
|
2019-12-09 05:14:31 -05:00
|
|
|
|
retry()
|
2019-12-09 03:02:49 -05:00
|
|
|
|
continue
|
|
|
|
|
}
|
2021-01-15 11:45:49 -05:00
|
|
|
|
err = receiveTasks(tasks)
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("receiveTasks exit to main: ", err)
|
2019-12-09 05:14:31 -05:00
|
|
|
|
retry()
|
2019-12-07 05:14:40 -05:00
|
|
|
|
}
|
2019-12-09 03:02:49 -05:00
|
|
|
|
}
|
2019-12-07 05:14:40 -05:00
|
|
|
|
|
2021-01-15 11:45:49 -05:00
|
|
|
|
func receiveTasks(tasks pb.NezhaService_RequestTaskClient) error {
|
2019-12-09 03:02:49 -05:00
|
|
|
|
var err error
|
2021-04-25 11:46:15 -04:00
|
|
|
|
defer println("receiveTasks exit", time.Now(), "=>", err)
|
2019-12-09 03:02:49 -05:00
|
|
|
|
for {
|
2021-01-16 05:04:47 -05:00
|
|
|
|
var task *pb.Task
|
2021-01-15 11:45:49 -05:00
|
|
|
|
task, err = tasks.Recv()
|
2019-12-09 03:02:49 -05:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2021-08-17 23:56:54 -04:00
|
|
|
|
go func() {
|
|
|
|
|
defer func() {
|
|
|
|
|
if recover() != nil {
|
|
|
|
|
println("task panic", task)
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
doTask(task)
|
|
|
|
|
}()
|
2021-01-16 05:04:47 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func doTask(task *pb.Task) {
|
|
|
|
|
var result pb.TaskResult
|
|
|
|
|
result.Id = task.GetId()
|
|
|
|
|
result.Type = task.GetType()
|
|
|
|
|
switch task.GetType() {
|
2021-08-17 23:56:54 -04:00
|
|
|
|
case model.TaskTypeTerminal:
|
|
|
|
|
handleTerminalTask(task)
|
2021-01-18 20:59:04 -05:00
|
|
|
|
case model.TaskTypeHTTPGET:
|
2021-08-17 23:56:54 -04:00
|
|
|
|
handleHttpGetTask(task, &result)
|
2021-01-18 20:59:04 -05:00
|
|
|
|
case model.TaskTypeICMPPing:
|
2021-08-17 23:56:54 -04:00
|
|
|
|
handleIcmpPingTask(task, &result)
|
2021-01-18 20:59:04 -05:00
|
|
|
|
case model.TaskTypeTCPPing:
|
2021-08-17 23:56:54 -04:00
|
|
|
|
handleTcpPingTask(task, &result)
|
2021-01-18 20:59:04 -05:00
|
|
|
|
case model.TaskTypeCommand:
|
2021-08-17 23:56:54 -04:00
|
|
|
|
handleCommandTask(task, &result)
|
2021-01-16 05:04:47 -05:00
|
|
|
|
default:
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("Unknown action: ", task)
|
2019-12-07 05:14:40 -05:00
|
|
|
|
}
|
2021-06-11 23:37:47 -04:00
|
|
|
|
client.ReportTask(context.Background(), &result)
|
2019-12-09 03:02:49 -05:00
|
|
|
|
}
|
2019-12-05 09:36:58 -05:00
|
|
|
|
|
2019-12-09 03:02:49 -05:00
|
|
|
|
func reportState() {
|
2021-01-13 09:30:28 -05:00
|
|
|
|
var lastReportHostInfo time.Time
|
2019-12-09 03:02:49 -05:00
|
|
|
|
var err error
|
2021-04-25 11:46:15 -04:00
|
|
|
|
defer println("reportState exit", time.Now(), "=>", err)
|
2019-12-09 03:02:49 -05:00
|
|
|
|
for {
|
2021-07-16 06:09:50 -04:00
|
|
|
|
// 为了更准确的记录时段流量,inited 后再上传状态信息
|
|
|
|
|
if client != nil && inited {
|
2019-12-09 10:45:23 -05:00
|
|
|
|
monitor.TrackNetworkSpeed()
|
2021-06-11 23:37:47 -04:00
|
|
|
|
timeOutCtx, cancel := context.WithTimeout(context.Background(), networkTimeOut)
|
2021-08-16 11:26:38 -04:00
|
|
|
|
_, err = client.ReportSystemState(timeOutCtx, monitor.GetState(stateConf).PB())
|
2021-06-11 23:37:47 -04:00
|
|
|
|
cancel()
|
2019-12-09 05:14:31 -05:00
|
|
|
|
if err != nil {
|
2021-04-25 11:46:15 -04:00
|
|
|
|
println("reportState error", err)
|
2019-12-09 05:14:31 -05:00
|
|
|
|
time.Sleep(delayWhenError)
|
|
|
|
|
}
|
2021-01-13 09:30:28 -05:00
|
|
|
|
if lastReportHostInfo.Before(time.Now().Add(-10 * time.Minute)) {
|
|
|
|
|
lastReportHostInfo = time.Now()
|
2021-06-11 23:37:47 -04:00
|
|
|
|
client.ReportSystemInfo(context.Background(), monitor.GetHost().PB())
|
2021-01-13 09:30:28 -05:00
|
|
|
|
}
|
2019-12-05 10:42:20 -05:00
|
|
|
|
}
|
2021-08-15 04:38:05 -04:00
|
|
|
|
time.Sleep(time.Second)
|
2019-12-05 10:42:20 -05:00
|
|
|
|
}
|
2019-12-05 09:36:58 -05:00
|
|
|
|
}
|
2021-04-25 11:46:15 -04:00
|
|
|
|
|
2021-05-21 22:56:30 -04:00
|
|
|
|
func doSelfUpdate() {
|
|
|
|
|
defer func() {
|
|
|
|
|
time.Sleep(time.Minute * 20)
|
|
|
|
|
updateCh <- struct{}{}
|
|
|
|
|
}()
|
|
|
|
|
v := semver.MustParse(version)
|
|
|
|
|
println("Check update", v)
|
|
|
|
|
latest, err := selfupdate.UpdateSelf(v, "naiba/nezha")
|
|
|
|
|
if err != nil {
|
|
|
|
|
println("Binary update failed:", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if latest.Version.Equals(v) {
|
|
|
|
|
println("Current binary is up to date", version)
|
|
|
|
|
} else {
|
|
|
|
|
println("Upgrade successfully", latest.Version)
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 23:56:54 -04:00
|
|
|
|
func handleTcpPingTask(task *pb.Task, result *pb.TaskResult) {
|
|
|
|
|
start := time.Now()
|
|
|
|
|
conn, err := net.DialTimeout("tcp", task.GetData(), time.Second*10)
|
|
|
|
|
if err == nil {
|
|
|
|
|
conn.Write([]byte("ping\n"))
|
|
|
|
|
conn.Close()
|
|
|
|
|
result.Delay = float32(time.Since(start).Microseconds()) / 1000.0
|
|
|
|
|
result.Successful = true
|
|
|
|
|
} else {
|
|
|
|
|
result.Data = err.Error()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handleIcmpPingTask(task *pb.Task, result *pb.TaskResult) {
|
|
|
|
|
pinger, err := ping.NewPinger(task.GetData())
|
|
|
|
|
if err == nil {
|
|
|
|
|
pinger.SetPrivileged(true)
|
|
|
|
|
pinger.Count = 5
|
|
|
|
|
pinger.Timeout = time.Second * 20
|
|
|
|
|
err = pinger.Run() // Blocks until finished.
|
|
|
|
|
}
|
|
|
|
|
if err == nil {
|
|
|
|
|
result.Delay = float32(pinger.Statistics().AvgRtt.Microseconds()) / 1000.0
|
|
|
|
|
result.Successful = true
|
|
|
|
|
} else {
|
|
|
|
|
result.Data = err.Error()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handleHttpGetTask(task *pb.Task, result *pb.TaskResult) {
|
|
|
|
|
start := time.Now()
|
|
|
|
|
resp, err := httpClient.Get(task.GetData())
|
|
|
|
|
if err == nil {
|
|
|
|
|
// 检查 HTTP Response 状态
|
|
|
|
|
result.Delay = float32(time.Since(start).Microseconds()) / 1000.0
|
|
|
|
|
if resp.StatusCode > 399 || resp.StatusCode < 200 {
|
|
|
|
|
err = errors.New("\n应用错误:" + resp.Status)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if err == nil {
|
|
|
|
|
// 检查 SSL 证书信息
|
|
|
|
|
serviceUrl, err := url.Parse(task.GetData())
|
|
|
|
|
if err == nil {
|
|
|
|
|
if serviceUrl.Scheme == "https" {
|
|
|
|
|
c := cert.NewCert(serviceUrl.Host)
|
|
|
|
|
if c.Error != "" {
|
|
|
|
|
result.Data = "SSL证书错误:" + c.Error
|
|
|
|
|
} else {
|
|
|
|
|
result.Data = c.Issuer + "|" + c.NotAfter
|
|
|
|
|
result.Successful = true
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
result.Successful = true
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
result.Data = "URL解析错误:" + err.Error()
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// HTTP 请求失败
|
|
|
|
|
result.Data = err.Error()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handleCommandTask(task *pb.Task, result *pb.TaskResult) {
|
|
|
|
|
startedAt := time.Now()
|
|
|
|
|
var cmd *exec.Cmd
|
|
|
|
|
var endCh = make(chan struct{})
|
2021-08-18 05:42:26 -04:00
|
|
|
|
pg, err := processgroup.NewProcessExitGroup()
|
2021-08-17 23:56:54 -04:00
|
|
|
|
if err != nil {
|
|
|
|
|
// 进程组创建失败,直接退出
|
|
|
|
|
result.Data = err.Error()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
timeout := time.NewTimer(time.Hour * 2)
|
|
|
|
|
if utils.IsWindows() {
|
|
|
|
|
cmd = exec.Command("cmd", "/c", task.GetData())
|
|
|
|
|
} else {
|
|
|
|
|
cmd = exec.Command("sh", "-c", task.GetData())
|
|
|
|
|
}
|
2021-08-19 11:57:45 -04:00
|
|
|
|
cmd.Env = os.Environ()
|
2021-08-17 23:56:54 -04:00
|
|
|
|
pg.AddProcess(cmd)
|
|
|
|
|
go func() {
|
|
|
|
|
select {
|
|
|
|
|
case <-timeout.C:
|
|
|
|
|
result.Data = "任务执行超时\n"
|
|
|
|
|
close(endCh)
|
|
|
|
|
pg.Dispose()
|
|
|
|
|
case <-endCh:
|
|
|
|
|
timeout.Stop()
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
output, err := cmd.Output()
|
|
|
|
|
if err != nil {
|
|
|
|
|
result.Data += fmt.Sprintf("%s\n%s", string(output), err.Error())
|
|
|
|
|
} else {
|
|
|
|
|
close(endCh)
|
|
|
|
|
result.Data = string(output)
|
|
|
|
|
result.Successful = true
|
|
|
|
|
}
|
|
|
|
|
result.Delay = float32(time.Since(startedAt).Seconds())
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-18 05:42:26 -04:00
|
|
|
|
type WindowSize struct {
|
|
|
|
|
Cols uint32
|
|
|
|
|
Rows uint32
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 23:56:54 -04:00
|
|
|
|
func handleTerminalTask(task *pb.Task) {
|
|
|
|
|
var terminal model.TerminalTask
|
|
|
|
|
err := json.Unmarshal([]byte(task.GetData()), &terminal)
|
|
|
|
|
if err != nil {
|
|
|
|
|
println("Terminal 任务解析错误:", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
protocol := "ws"
|
|
|
|
|
if terminal.UseSSL {
|
|
|
|
|
protocol += "s"
|
|
|
|
|
}
|
|
|
|
|
header := http.Header{}
|
|
|
|
|
header.Add("Secret", clientSecret)
|
|
|
|
|
conn, _, err := websocket.DefaultDialer.Dial(fmt.Sprintf("%s://%s/terminal/%s", protocol, terminal.Host, terminal.Session), header)
|
|
|
|
|
if err != nil {
|
|
|
|
|
println("Terminal 连接失败:", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
2021-08-18 05:42:26 -04:00
|
|
|
|
tty, err := pty.Start()
|
2021-08-17 23:56:54 -04:00
|
|
|
|
if err != nil {
|
|
|
|
|
println("Terminal pty.Start失败:", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
|
tty.Close()
|
|
|
|
|
conn.Close()
|
|
|
|
|
println("terminal exit", terminal.Session)
|
|
|
|
|
}()
|
2021-08-18 05:42:26 -04:00
|
|
|
|
println("terminal init", terminal.Session)
|
2021-08-17 23:56:54 -04:00
|
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
|
for {
|
|
|
|
|
buf := make([]byte, 1024)
|
|
|
|
|
read, err := tty.Read(buf)
|
|
|
|
|
if err != nil {
|
|
|
|
|
conn.WriteMessage(websocket.TextMessage, []byte(err.Error()))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
conn.WriteMessage(websocket.BinaryMessage, buf[:read])
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
messageType, reader, err := conn.NextReader()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if messageType == websocket.TextMessage {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dataTypeBuf := make([]byte, 1)
|
|
|
|
|
read, err := reader.Read(dataTypeBuf)
|
|
|
|
|
if err != nil {
|
|
|
|
|
conn.WriteMessage(websocket.TextMessage, []byte("Unable to read message type from reader"))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if read != 1 {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch dataTypeBuf[0] {
|
|
|
|
|
case 0:
|
|
|
|
|
io.Copy(tty, reader)
|
|
|
|
|
case 1:
|
|
|
|
|
decoder := json.NewDecoder(reader)
|
2021-08-18 05:42:26 -04:00
|
|
|
|
var resizeMessage WindowSize
|
2021-08-17 23:56:54 -04:00
|
|
|
|
err := decoder.Decode(&resizeMessage)
|
|
|
|
|
if err != nil {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2021-08-18 05:42:26 -04:00
|
|
|
|
tty.Setsize(resizeMessage.Cols, resizeMessage.Rows)
|
2021-08-17 23:56:54 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-25 11:46:15 -04:00
|
|
|
|
func println(v ...interface{}) {
|
2021-07-08 12:01:58 -04:00
|
|
|
|
if debug {
|
2021-04-25 11:46:15 -04:00
|
|
|
|
log.Println(v...)
|
|
|
|
|
}
|
|
|
|
|
}
|