mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
570 lines
16 KiB
570 lines
16 KiB
package service
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/user"
|
|
"path"
|
|
"path/filepath"
|
|
"sort"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/1Panel-dev/1Panel/agent/app/dto"
|
|
"github.com/1Panel-dev/1Panel/agent/buserr"
|
|
"github.com/1Panel-dev/1Panel/agent/constant"
|
|
"github.com/1Panel-dev/1Panel/agent/global"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/cmd"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/common"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/files"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/qqwry"
|
|
"github.com/1Panel-dev/1Panel/agent/utils/systemctl"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const sshPath = "/etc/ssh/sshd_config"
|
|
|
|
type SSHService struct{}
|
|
|
|
type ISSHService interface {
|
|
GetSSHInfo() (*dto.SSHInfo, error)
|
|
OperateSSH(operation string) error
|
|
UpdateByFile(value string) error
|
|
Update(req dto.SSHUpdate) error
|
|
GenerateSSH(req dto.GenerateSSH) error
|
|
LoadSSHSecret(mode string) (string, error)
|
|
LoadLog(req dto.SearchSSHLog) (*dto.SSHLog, error)
|
|
|
|
LoadSSHConf() (string, error)
|
|
}
|
|
|
|
func NewISSHService() ISSHService {
|
|
return &SSHService{}
|
|
}
|
|
|
|
func (u *SSHService) GetSSHInfo() (*dto.SSHInfo, error) {
|
|
data := dto.SSHInfo{
|
|
AutoStart: true,
|
|
Status: constant.StatusEnable,
|
|
Message: "",
|
|
Port: "22",
|
|
ListenAddress: "",
|
|
PasswordAuthentication: "yes",
|
|
PubkeyAuthentication: "yes",
|
|
PermitRootLogin: "yes",
|
|
UseDNS: "yes",
|
|
}
|
|
serviceName, err := loadServiceName()
|
|
if err != nil {
|
|
data.Status = constant.StatusDisable
|
|
data.Message = err.Error()
|
|
} else {
|
|
active, err := systemctl.IsActive(serviceName)
|
|
if !active {
|
|
data.Status = constant.StatusDisable
|
|
if err != nil {
|
|
data.Message = err.Error()
|
|
}
|
|
} else {
|
|
data.Status = constant.StatusEnable
|
|
}
|
|
}
|
|
|
|
out, err := systemctl.RunSystemCtl("is-enabled", serviceName)
|
|
if err != nil {
|
|
data.AutoStart = false
|
|
} else {
|
|
if out == "alias\n" {
|
|
data.AutoStart, _ = systemctl.IsEnable("ssh")
|
|
} else {
|
|
data.AutoStart = out == "enabled\n"
|
|
}
|
|
}
|
|
|
|
sshConf, err := os.ReadFile(sshPath)
|
|
if err != nil {
|
|
data.Message = err.Error()
|
|
data.Status = constant.StatusDisable
|
|
}
|
|
lines := strings.Split(string(sshConf), "\n")
|
|
for _, line := range lines {
|
|
if strings.HasPrefix(line, "Port ") {
|
|
data.Port = strings.ReplaceAll(line, "Port ", "")
|
|
}
|
|
if strings.HasPrefix(line, "ListenAddress ") {
|
|
itemAddr := strings.ReplaceAll(line, "ListenAddress ", "")
|
|
if len(data.ListenAddress) != 0 {
|
|
data.ListenAddress += ("," + itemAddr)
|
|
} else {
|
|
data.ListenAddress = itemAddr
|
|
}
|
|
}
|
|
if strings.HasPrefix(line, "PasswordAuthentication ") {
|
|
data.PasswordAuthentication = strings.ReplaceAll(line, "PasswordAuthentication ", "")
|
|
}
|
|
if strings.HasPrefix(line, "PubkeyAuthentication ") {
|
|
data.PubkeyAuthentication = strings.ReplaceAll(line, "PubkeyAuthentication ", "")
|
|
}
|
|
if strings.HasPrefix(line, "PermitRootLogin ") {
|
|
data.PermitRootLogin = strings.ReplaceAll(strings.ReplaceAll(line, "PermitRootLogin ", ""), "prohibit-password", "without-password")
|
|
}
|
|
if strings.HasPrefix(line, "UseDNS ") {
|
|
data.UseDNS = strings.ReplaceAll(line, "UseDNS ", "")
|
|
}
|
|
}
|
|
return &data, nil
|
|
}
|
|
|
|
func (u *SSHService) OperateSSH(operation string) error {
|
|
serviceName, err := loadServiceName()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sudo := cmd.SudoHandleCmd()
|
|
if operation == "enable" || operation == "disable" {
|
|
serviceName += ".service"
|
|
}
|
|
stdout, err := cmd.Execf("%s systemctl %s %s", sudo, operation, serviceName)
|
|
if err != nil {
|
|
if strings.Contains(stdout, "alias name or linked unit file") {
|
|
stdout, err := cmd.Execf("%s systemctl %s ssh", sudo, operation)
|
|
if err != nil {
|
|
return fmt.Errorf("%s ssh(alias name or linked unit file) failed, stdout: %s, err: %v", operation, stdout, err)
|
|
}
|
|
}
|
|
return fmt.Errorf("%s %s failed, stdout: %s, err: %v", operation, serviceName, stdout, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (u *SSHService) Update(req dto.SSHUpdate) error {
|
|
serviceName, err := loadServiceName()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
sshConf, err := os.ReadFile(sshPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
lines := strings.Split(string(sshConf), "\n")
|
|
newFiles := updateSSHConf(lines, req.Key, req.NewValue)
|
|
file, err := os.OpenFile(sshPath, os.O_WRONLY|os.O_TRUNC, 0666)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
if _, err = file.WriteString(strings.Join(newFiles, "\n")); err != nil {
|
|
return err
|
|
}
|
|
sudo := cmd.SudoHandleCmd()
|
|
if req.Key == "Port" {
|
|
stdout, _ := cmd.Execf("%s getenforce", sudo)
|
|
if stdout == "Enforcing\n" {
|
|
_, _ = cmd.Execf("%s semanage port -a -t ssh_port_t -p tcp %s", sudo, req.NewValue)
|
|
}
|
|
|
|
ruleItem := dto.PortRuleUpdate{
|
|
OldRule: dto.PortRuleOperate{
|
|
Operation: "remove",
|
|
Port: req.OldValue,
|
|
Protocol: "tcp",
|
|
Strategy: "accept",
|
|
},
|
|
NewRule: dto.PortRuleOperate{
|
|
Operation: "add",
|
|
Port: req.NewValue,
|
|
Protocol: "tcp",
|
|
Strategy: "accept",
|
|
},
|
|
}
|
|
if err := NewIFirewallService().UpdatePortRule(ruleItem); err != nil {
|
|
global.LOG.Errorf("reset firewall rules %s -> %s failed, err: %v", req.OldValue, req.NewValue, err)
|
|
}
|
|
}
|
|
|
|
_, _ = cmd.Execf("%s systemctl restart %s", sudo, serviceName)
|
|
return nil
|
|
}
|
|
|
|
func (u *SSHService) UpdateByFile(value string) error {
|
|
serviceName, err := loadServiceName()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
file, err := os.OpenFile(sshPath, os.O_WRONLY|os.O_TRUNC, 0666)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
if _, err = file.WriteString(value); err != nil {
|
|
return err
|
|
}
|
|
sudo := cmd.SudoHandleCmd()
|
|
_, _ = cmd.Execf("%s systemctl restart %s", sudo, serviceName)
|
|
return nil
|
|
}
|
|
|
|
func (u *SSHService) GenerateSSH(req dto.GenerateSSH) error {
|
|
if cmd.CheckIllegal(req.EncryptionMode, req.Password) {
|
|
return buserr.New(constant.ErrCmdIllegal)
|
|
}
|
|
currentUser, err := user.Current()
|
|
if err != nil {
|
|
return fmt.Errorf("load current user failed, err: %v", err)
|
|
}
|
|
secretFile := fmt.Sprintf("%s/.ssh/id_item_%s", currentUser.HomeDir, req.EncryptionMode)
|
|
secretPubFile := fmt.Sprintf("%s/.ssh/id_item_%s.pub", currentUser.HomeDir, req.EncryptionMode)
|
|
authFilePath := currentUser.HomeDir + "/.ssh/authorized_keys"
|
|
|
|
command := fmt.Sprintf("ssh-keygen -t %s -f %s/.ssh/id_item_%s | echo y", req.EncryptionMode, currentUser.HomeDir, req.EncryptionMode)
|
|
if len(req.Password) != 0 {
|
|
command = fmt.Sprintf("ssh-keygen -t %s -P %s -f %s/.ssh/id_item_%s | echo y", req.EncryptionMode, req.Password, currentUser.HomeDir, req.EncryptionMode)
|
|
}
|
|
stdout, err := cmd.Exec(command)
|
|
if err != nil {
|
|
return fmt.Errorf("generate failed, err: %v, message: %s", err, stdout)
|
|
}
|
|
defer func() {
|
|
_ = os.Remove(secretFile)
|
|
}()
|
|
defer func() {
|
|
_ = os.Remove(secretPubFile)
|
|
}()
|
|
|
|
if _, err := os.Stat(authFilePath); err != nil && errors.Is(err, os.ErrNotExist) {
|
|
authFile, err := os.Create(authFilePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer authFile.Close()
|
|
}
|
|
stdout1, err := cmd.Execf("cat %s >> %s/.ssh/authorized_keys", secretPubFile, currentUser.HomeDir)
|
|
if err != nil {
|
|
return fmt.Errorf("generate failed, err: %v, message: %s", err, stdout1)
|
|
}
|
|
|
|
fileOp := files.NewFileOp()
|
|
if err := fileOp.Rename(secretFile, fmt.Sprintf("%s/.ssh/id_%s", currentUser.HomeDir, req.EncryptionMode)); err != nil {
|
|
return err
|
|
}
|
|
if err := fileOp.Rename(secretPubFile, fmt.Sprintf("%s/.ssh/id_%s.pub", currentUser.HomeDir, req.EncryptionMode)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (u *SSHService) LoadSSHSecret(mode string) (string, error) {
|
|
currentUser, err := user.Current()
|
|
if err != nil {
|
|
return "", fmt.Errorf("load current user failed, err: %v", err)
|
|
}
|
|
|
|
homeDir := currentUser.HomeDir
|
|
if _, err := os.Stat(fmt.Sprintf("%s/.ssh/id_%s", homeDir, mode)); err != nil {
|
|
return "", nil
|
|
}
|
|
file, err := os.ReadFile(fmt.Sprintf("%s/.ssh/id_%s", homeDir, mode))
|
|
return string(file), err
|
|
}
|
|
|
|
type sshFileItem struct {
|
|
Name string
|
|
Year int
|
|
}
|
|
|
|
func (u *SSHService) LoadLog(req dto.SearchSSHLog) (*dto.SSHLog, error) {
|
|
var fileList []sshFileItem
|
|
var data dto.SSHLog
|
|
baseDir := "/var/log"
|
|
if err := filepath.Walk(baseDir, func(pathItem string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !info.IsDir() && (strings.HasPrefix(info.Name(), "secure") || strings.HasPrefix(info.Name(), "auth")) {
|
|
if !strings.HasSuffix(info.Name(), ".gz") {
|
|
fileList = append(fileList, sshFileItem{Name: pathItem, Year: info.ModTime().Year()})
|
|
return nil
|
|
}
|
|
itemFileName := strings.TrimSuffix(pathItem, ".gz")
|
|
if _, err := os.Stat(itemFileName); err != nil && os.IsNotExist(err) {
|
|
if err := handleGunzip(pathItem); err == nil {
|
|
fileList = append(fileList, sshFileItem{Name: itemFileName, Year: info.ModTime().Year()})
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
fileList = sortFileList(fileList)
|
|
|
|
command := ""
|
|
if len(req.Info) != 0 {
|
|
command = fmt.Sprintf(" | grep '%s'", req.Info)
|
|
}
|
|
|
|
showCountFrom := (req.Page - 1) * req.PageSize
|
|
showCountTo := req.Page * req.PageSize
|
|
nyc, _ := time.LoadLocation(common.LoadTimeZone())
|
|
qqWry, err := qqwry.NewQQwry()
|
|
if err != nil {
|
|
global.LOG.Errorf("load qqwry datas failed: %s", err)
|
|
}
|
|
for _, file := range fileList {
|
|
commandItem := ""
|
|
if strings.HasPrefix(path.Base(file.Name), "secure") {
|
|
switch req.Status {
|
|
case constant.StatusSuccess:
|
|
commandItem = fmt.Sprintf("cat %s | grep -a Accepted %s", file.Name, command)
|
|
case constant.StatusFailed:
|
|
commandItem = fmt.Sprintf("cat %s | grep -a 'Failed password for' %s", file.Name, command)
|
|
default:
|
|
commandItem = fmt.Sprintf("cat %s | grep -aE '(Failed password for|Accepted)' %s", file.Name, command)
|
|
}
|
|
}
|
|
if strings.HasPrefix(path.Base(file.Name), "auth.log") {
|
|
switch req.Status {
|
|
case constant.StatusSuccess:
|
|
commandItem = fmt.Sprintf("cat %s | grep -a Accepted %s", file.Name, command)
|
|
case constant.StatusFailed:
|
|
commandItem = fmt.Sprintf("cat %s | grep -aE 'Failed password for|Connection closed by authenticating user' %s", file.Name, command)
|
|
default:
|
|
commandItem = fmt.Sprintf("cat %s | grep -aE \"(Failed password for|Connection closed by authenticating user|Accepted)\" %s", file.Name, command)
|
|
}
|
|
}
|
|
dataItem, successCount, failedCount := loadSSHData(commandItem, showCountFrom, showCountTo, file.Year, qqWry, nyc)
|
|
data.FailedCount += failedCount
|
|
data.TotalCount += successCount + failedCount
|
|
showCountFrom = showCountFrom - (successCount + failedCount)
|
|
showCountTo = showCountTo - (successCount + failedCount)
|
|
data.Logs = append(data.Logs, dataItem...)
|
|
}
|
|
|
|
data.SuccessfulCount = data.TotalCount - data.FailedCount
|
|
return &data, nil
|
|
}
|
|
|
|
func (u *SSHService) LoadSSHConf() (string, error) {
|
|
if _, err := os.Stat("/etc/ssh/sshd_config"); err != nil {
|
|
return "", buserr.New("ErrHttpReqNotFound")
|
|
}
|
|
content, err := os.ReadFile("/etc/ssh/sshd_config")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return string(content), nil
|
|
}
|
|
|
|
func sortFileList(fileNames []sshFileItem) []sshFileItem {
|
|
if len(fileNames) < 2 {
|
|
return fileNames
|
|
}
|
|
if strings.HasPrefix(path.Base(fileNames[0].Name), "secure") {
|
|
var itemFile []sshFileItem
|
|
sort.Slice(fileNames, func(i, j int) bool {
|
|
return fileNames[i].Name > fileNames[j].Name
|
|
})
|
|
itemFile = append(itemFile, fileNames[len(fileNames)-1])
|
|
itemFile = append(itemFile, fileNames[:len(fileNames)-1]...)
|
|
return itemFile
|
|
}
|
|
sort.Slice(fileNames, func(i, j int) bool {
|
|
return fileNames[i].Name < fileNames[j].Name
|
|
})
|
|
return fileNames
|
|
}
|
|
|
|
func updateSSHConf(oldFiles []string, param string, value string) []string {
|
|
var valueItems []string
|
|
if param != "ListenAddress" {
|
|
valueItems = append(valueItems, value)
|
|
} else {
|
|
if value != "" {
|
|
valueItems = strings.Split(value, ",")
|
|
}
|
|
}
|
|
var newFiles []string
|
|
for _, line := range oldFiles {
|
|
lineItem := strings.TrimSpace(line)
|
|
if (strings.HasPrefix(lineItem, param) || strings.HasPrefix(lineItem, fmt.Sprintf("#%s", param))) && len(valueItems) != 0 {
|
|
newFiles = append(newFiles, fmt.Sprintf("%s %s", param, valueItems[0]))
|
|
valueItems = valueItems[1:]
|
|
continue
|
|
}
|
|
if strings.HasPrefix(lineItem, param) && len(valueItems) == 0 {
|
|
newFiles = append(newFiles, fmt.Sprintf("#%s", line))
|
|
continue
|
|
}
|
|
newFiles = append(newFiles, line)
|
|
}
|
|
if len(valueItems) != 0 {
|
|
for _, item := range valueItems {
|
|
newFiles = append(newFiles, fmt.Sprintf("%s %s", param, item))
|
|
}
|
|
}
|
|
return newFiles
|
|
}
|
|
|
|
func loadSSHData(command string, showCountFrom, showCountTo, currentYear int, qqWry *qqwry.QQwry, nyc *time.Location) ([]dto.SSHHistory, int, int) {
|
|
var (
|
|
datas []dto.SSHHistory
|
|
successCount int
|
|
failedCount int
|
|
)
|
|
stdout2, err := cmd.Exec(command)
|
|
if err != nil {
|
|
return datas, 0, 0
|
|
}
|
|
lines := strings.Split(string(stdout2), "\n")
|
|
for i := len(lines) - 1; i >= 0; i-- {
|
|
var itemData dto.SSHHistory
|
|
switch {
|
|
case strings.Contains(lines[i], "Failed password for"):
|
|
itemData = loadFailedSecureDatas(lines[i])
|
|
if len(itemData.Address) != 0 {
|
|
if successCount+failedCount >= showCountFrom && successCount+failedCount < showCountTo {
|
|
itemData.Area = qqWry.Find(itemData.Address).Area
|
|
itemData.Date = loadDate(currentYear, itemData.DateStr, nyc)
|
|
datas = append(datas, itemData)
|
|
}
|
|
failedCount++
|
|
}
|
|
case strings.Contains(lines[i], "Connection closed by authenticating user"):
|
|
itemData = loadFailedAuthDatas(lines[i])
|
|
if len(itemData.Address) != 0 {
|
|
if successCount+failedCount >= showCountFrom && successCount+failedCount < showCountTo {
|
|
itemData.Area = qqWry.Find(itemData.Address).Area
|
|
itemData.Date = loadDate(currentYear, itemData.DateStr, nyc)
|
|
datas = append(datas, itemData)
|
|
}
|
|
failedCount++
|
|
}
|
|
case strings.Contains(lines[i], "Accepted "):
|
|
itemData = loadSuccessDatas(lines[i])
|
|
if len(itemData.Address) != 0 {
|
|
if successCount+failedCount >= showCountFrom && successCount+failedCount < showCountTo {
|
|
itemData.Area = qqWry.Find(itemData.Address).Area
|
|
itemData.Date = loadDate(currentYear, itemData.DateStr, nyc)
|
|
datas = append(datas, itemData)
|
|
}
|
|
successCount++
|
|
}
|
|
}
|
|
}
|
|
return datas, successCount, failedCount
|
|
}
|
|
|
|
func loadSuccessDatas(line string) dto.SSHHistory {
|
|
var data dto.SSHHistory
|
|
parts := strings.Fields(line)
|
|
index, dataStr := analyzeDateStr(parts)
|
|
if dataStr == "" {
|
|
return data
|
|
}
|
|
data.DateStr = dataStr
|
|
data.AuthMode = parts[4+index]
|
|
data.User = parts[6+index]
|
|
data.Address = parts[8+index]
|
|
data.Port = parts[10+index]
|
|
data.Status = constant.StatusSuccess
|
|
return data
|
|
}
|
|
|
|
func loadFailedAuthDatas(line string) dto.SSHHistory {
|
|
var data dto.SSHHistory
|
|
parts := strings.Fields(line)
|
|
index, dataStr := analyzeDateStr(parts)
|
|
if dataStr == "" {
|
|
return data
|
|
}
|
|
data.DateStr = dataStr
|
|
switch index {
|
|
case 1:
|
|
data.User = parts[9]
|
|
case 2:
|
|
data.User = parts[10]
|
|
default:
|
|
data.User = parts[7]
|
|
}
|
|
data.AuthMode = parts[6+index]
|
|
data.Address = parts[9+index]
|
|
data.Port = parts[11+index]
|
|
data.Status = constant.StatusFailed
|
|
if strings.Contains(line, ": ") {
|
|
data.Message = strings.Split(line, ": ")[1]
|
|
}
|
|
return data
|
|
}
|
|
func loadFailedSecureDatas(line string) dto.SSHHistory {
|
|
var data dto.SSHHistory
|
|
parts := strings.Fields(line)
|
|
index, dataStr := analyzeDateStr(parts)
|
|
if dataStr == "" {
|
|
return data
|
|
}
|
|
data.DateStr = dataStr
|
|
if strings.Contains(line, " invalid ") {
|
|
data.AuthMode = parts[4+index]
|
|
index += 2
|
|
} else {
|
|
data.AuthMode = parts[4+index]
|
|
}
|
|
data.User = parts[6+index]
|
|
data.Address = parts[8+index]
|
|
data.Port = parts[10+index]
|
|
data.Status = constant.StatusFailed
|
|
if strings.Contains(line, ": ") {
|
|
data.Message = strings.Split(line, ": ")[1]
|
|
}
|
|
return data
|
|
}
|
|
|
|
func handleGunzip(path string) error {
|
|
if _, err := cmd.Execf("gunzip %s", path); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func loadServiceName() (string, error) {
|
|
if exist, _ := systemctl.IsExist("sshd"); exist {
|
|
return "sshd", nil
|
|
} else if exist, _ := systemctl.IsExist("ssh"); exist {
|
|
return "ssh", nil
|
|
}
|
|
return "", errors.New("The ssh or sshd service is unavailable")
|
|
}
|
|
|
|
func loadDate(currentYear int, DateStr string, nyc *time.Location) time.Time {
|
|
itemDate, err := time.ParseInLocation("2006 Jan 2 15:04:05", fmt.Sprintf("%d %s", currentYear, DateStr), nyc)
|
|
if err != nil {
|
|
itemDate, _ = time.ParseInLocation("2006 Jan 2 15:04:05", DateStr, nyc)
|
|
}
|
|
return itemDate
|
|
}
|
|
|
|
func analyzeDateStr(parts []string) (int, string) {
|
|
t, err := time.Parse(time.RFC3339Nano, parts[0])
|
|
if err == nil {
|
|
if len(parts) < 12 {
|
|
return 0, ""
|
|
}
|
|
return 0, t.Format("2006 Jan 2 15:04:05")
|
|
}
|
|
t, err = time.Parse(constant.DateTimeLayout, fmt.Sprintf("%s %s", parts[0], parts[1]))
|
|
if err == nil {
|
|
if len(parts) < 14 {
|
|
return 0, ""
|
|
}
|
|
return 1, t.Format("2006 Jan 2 15:04:05")
|
|
}
|
|
|
|
if len(parts) < 14 {
|
|
return 0, ""
|
|
}
|
|
return 2, fmt.Sprintf("%s %s %s", parts[0], parts[1], parts[2])
|
|
}
|