2017-07-13 02:20:49 +08:00
|
|
|
// Copyright 2017 fatedier, fatedier@gmail.com
|
|
|
|
//
|
|
|
|
// 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 client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2018-01-17 01:09:33 +08:00
|
|
|
"fmt"
|
2019-01-31 18:35:44 +08:00
|
|
|
"io/ioutil"
|
2017-07-13 02:20:49 +08:00
|
|
|
"net/http"
|
2018-01-17 01:09:33 +08:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2017-07-13 02:20:49 +08:00
|
|
|
|
2018-12-09 22:06:22 +08:00
|
|
|
"github.com/fatedier/frp/client/proxy"
|
2018-04-10 17:46:49 +08:00
|
|
|
"github.com/fatedier/frp/g"
|
2017-07-13 02:20:49 +08:00
|
|
|
"github.com/fatedier/frp/models/config"
|
|
|
|
"github.com/fatedier/frp/utils/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GeneralResponse struct {
|
2019-02-11 11:26:06 +08:00
|
|
|
Code int
|
|
|
|
Msg string
|
2017-07-13 02:20:49 +08:00
|
|
|
}
|
|
|
|
|
2019-01-31 18:35:44 +08:00
|
|
|
// GET api/reload
|
2017-07-13 02:20:49 +08:00
|
|
|
|
2018-05-20 19:06:05 +08:00
|
|
|
func (svr *Service) apiReload(w http.ResponseWriter, r *http.Request) {
|
2019-02-11 11:26:06 +08:00
|
|
|
res := GeneralResponse{Code: 200}
|
2019-01-31 18:35:44 +08:00
|
|
|
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http request [/api/reload]")
|
2017-07-13 02:20:49 +08:00
|
|
|
defer func() {
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http response [/api/reload], code [%d]", res.Code)
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
}
|
2017-07-13 02:20:49 +08:00
|
|
|
}()
|
|
|
|
|
2018-12-11 11:46:12 +08:00
|
|
|
content, err := config.GetRenderedConfFromFile(g.GlbClientCfg.CfgFile)
|
2017-07-13 02:20:49 +08:00
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2017-07-13 02:20:49 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("reload frpc config file error: %s", res.Msg)
|
2017-07-13 02:20:49 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-10 17:46:49 +08:00
|
|
|
newCommonCfg, err := config.UnmarshalClientConfFromIni(nil, content)
|
2017-07-13 02:20:49 +08:00
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2017-07-13 02:20:49 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("reload frpc common section error: %s", res.Msg)
|
2017-07-13 02:20:49 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-12-11 11:46:12 +08:00
|
|
|
pxyCfgs, visitorCfgs, err := config.LoadAllConfFromIni(g.GlbClientCfg.User, content, newCommonCfg.Start)
|
2017-07-13 02:20:49 +08:00
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2017-07-13 02:20:49 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("reload frpc proxy config error: %s", res.Msg)
|
2017-07-13 02:20:49 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-30 11:12:28 +08:00
|
|
|
err = svr.ReloadConf(pxyCfgs, visitorCfgs)
|
2018-01-17 01:09:33 +08:00
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 500
|
2018-01-17 01:09:33 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("reload frpc proxy config error: %s", res.Msg)
|
2018-01-17 01:09:33 +08:00
|
|
|
return
|
|
|
|
}
|
2017-07-13 02:20:49 +08:00
|
|
|
log.Info("success reload conf")
|
|
|
|
return
|
|
|
|
}
|
2018-01-17 01:09:33 +08:00
|
|
|
|
|
|
|
type StatusResp struct {
|
|
|
|
Tcp []ProxyStatusResp `json:"tcp"`
|
|
|
|
Udp []ProxyStatusResp `json:"udp"`
|
|
|
|
Http []ProxyStatusResp `json:"http"`
|
|
|
|
Https []ProxyStatusResp `json:"https"`
|
|
|
|
Stcp []ProxyStatusResp `json:"stcp"`
|
|
|
|
Xtcp []ProxyStatusResp `json:"xtcp"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProxyStatusResp struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
Err string `json:"err"`
|
|
|
|
LocalAddr string `json:"local_addr"`
|
|
|
|
Plugin string `json:"plugin"`
|
|
|
|
RemoteAddr string `json:"remote_addr"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ByProxyStatusResp []ProxyStatusResp
|
|
|
|
|
|
|
|
func (a ByProxyStatusResp) Len() int { return len(a) }
|
|
|
|
func (a ByProxyStatusResp) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
|
|
|
func (a ByProxyStatusResp) Less(i, j int) bool { return strings.Compare(a[i].Name, a[j].Name) < 0 }
|
|
|
|
|
2018-12-09 22:06:22 +08:00
|
|
|
func NewProxyStatusResp(status *proxy.ProxyStatus) ProxyStatusResp {
|
2018-01-17 01:09:33 +08:00
|
|
|
psr := ProxyStatusResp{
|
|
|
|
Name: status.Name,
|
|
|
|
Type: status.Type,
|
|
|
|
Status: status.Status,
|
|
|
|
Err: status.Err,
|
|
|
|
}
|
|
|
|
switch cfg := status.Cfg.(type) {
|
|
|
|
case *config.TcpProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
|
|
|
psr.Plugin = cfg.Plugin
|
2018-01-17 21:49:37 +08:00
|
|
|
if status.Err != "" {
|
2018-04-10 17:46:49 +08:00
|
|
|
psr.RemoteAddr = fmt.Sprintf("%s:%d", g.GlbClientCfg.ServerAddr, cfg.RemotePort)
|
2018-01-17 21:49:37 +08:00
|
|
|
} else {
|
2018-04-10 17:46:49 +08:00
|
|
|
psr.RemoteAddr = g.GlbClientCfg.ServerAddr + status.RemoteAddr
|
2018-01-17 21:49:37 +08:00
|
|
|
}
|
2018-01-17 01:09:33 +08:00
|
|
|
case *config.UdpProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
2018-01-17 21:49:37 +08:00
|
|
|
if status.Err != "" {
|
2018-04-10 17:46:49 +08:00
|
|
|
psr.RemoteAddr = fmt.Sprintf("%s:%d", g.GlbClientCfg.ServerAddr, cfg.RemotePort)
|
2018-01-17 21:49:37 +08:00
|
|
|
} else {
|
2018-04-10 17:46:49 +08:00
|
|
|
psr.RemoteAddr = g.GlbClientCfg.ServerAddr + status.RemoteAddr
|
2018-01-17 21:49:37 +08:00
|
|
|
}
|
2018-01-17 01:09:33 +08:00
|
|
|
case *config.HttpProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
|
|
|
psr.Plugin = cfg.Plugin
|
2018-01-17 14:40:08 +08:00
|
|
|
psr.RemoteAddr = status.RemoteAddr
|
2018-01-17 01:09:33 +08:00
|
|
|
case *config.HttpsProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
|
|
|
psr.Plugin = cfg.Plugin
|
2018-01-17 14:40:08 +08:00
|
|
|
psr.RemoteAddr = status.RemoteAddr
|
2018-01-17 01:09:33 +08:00
|
|
|
case *config.StcpProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
|
|
|
psr.Plugin = cfg.Plugin
|
|
|
|
case *config.XtcpProxyConf:
|
|
|
|
if cfg.LocalPort != 0 {
|
|
|
|
psr.LocalAddr = fmt.Sprintf("%s:%d", cfg.LocalIp, cfg.LocalPort)
|
|
|
|
}
|
|
|
|
psr.Plugin = cfg.Plugin
|
|
|
|
}
|
|
|
|
return psr
|
|
|
|
}
|
|
|
|
|
2019-01-31 18:35:44 +08:00
|
|
|
// GET api/status
|
2018-05-20 19:06:05 +08:00
|
|
|
func (svr *Service) apiStatus(w http.ResponseWriter, r *http.Request) {
|
2018-01-17 01:09:33 +08:00
|
|
|
var (
|
|
|
|
buf []byte
|
|
|
|
res StatusResp
|
|
|
|
)
|
|
|
|
res.Tcp = make([]ProxyStatusResp, 0)
|
|
|
|
res.Udp = make([]ProxyStatusResp, 0)
|
|
|
|
res.Http = make([]ProxyStatusResp, 0)
|
|
|
|
res.Https = make([]ProxyStatusResp, 0)
|
|
|
|
res.Stcp = make([]ProxyStatusResp, 0)
|
|
|
|
res.Xtcp = make([]ProxyStatusResp, 0)
|
2019-01-31 18:35:44 +08:00
|
|
|
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http request [/api/status]")
|
2018-01-17 01:09:33 +08:00
|
|
|
defer func() {
|
|
|
|
log.Info("Http response [/api/status]")
|
|
|
|
buf, _ = json.Marshal(&res)
|
|
|
|
w.Write(buf)
|
|
|
|
}()
|
|
|
|
|
|
|
|
ps := svr.ctl.pm.GetAllProxyStatus()
|
|
|
|
for _, status := range ps {
|
|
|
|
switch status.Type {
|
|
|
|
case "tcp":
|
|
|
|
res.Tcp = append(res.Tcp, NewProxyStatusResp(status))
|
|
|
|
case "udp":
|
|
|
|
res.Udp = append(res.Udp, NewProxyStatusResp(status))
|
|
|
|
case "http":
|
|
|
|
res.Http = append(res.Http, NewProxyStatusResp(status))
|
|
|
|
case "https":
|
|
|
|
res.Https = append(res.Https, NewProxyStatusResp(status))
|
|
|
|
case "stcp":
|
|
|
|
res.Stcp = append(res.Stcp, NewProxyStatusResp(status))
|
|
|
|
case "xtcp":
|
|
|
|
res.Xtcp = append(res.Xtcp, NewProxyStatusResp(status))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Tcp))
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Udp))
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Http))
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Https))
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Stcp))
|
|
|
|
sort.Sort(ByProxyStatusResp(res.Xtcp))
|
|
|
|
return
|
|
|
|
}
|
2019-01-31 17:17:34 +08:00
|
|
|
|
2019-01-31 18:35:44 +08:00
|
|
|
// GET api/config
|
2019-01-31 17:17:34 +08:00
|
|
|
func (svr *Service) apiGetConfig(w http.ResponseWriter, r *http.Request) {
|
2019-02-11 11:26:06 +08:00
|
|
|
res := GeneralResponse{Code: 200}
|
2019-01-31 18:35:44 +08:00
|
|
|
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http get request [/api/config]")
|
2019-01-31 17:17:34 +08:00
|
|
|
defer func() {
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http get response [/api/config], code [%d]", res.Code)
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
w.Write([]byte(res.Msg))
|
2019-01-31 17:17:34 +08:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if g.GlbClientCfg.CfgFile == "" {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
|
|
|
res.Msg = "frpc has no config file path"
|
2019-01-31 18:35:44 +08:00
|
|
|
log.Warn("%s", res.Msg)
|
2019-01-31 17:17:34 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := config.GetRenderedConfFromFile(g.GlbClientCfg.CfgFile)
|
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2019-01-31 17:17:34 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("load frpc config file error: %s", res.Msg)
|
2019-01-31 17:17:34 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rows := strings.Split(content, "\n")
|
|
|
|
newRows := make([]string, 0, len(rows))
|
|
|
|
for _, row := range rows {
|
|
|
|
row = strings.TrimSpace(row)
|
|
|
|
if strings.HasPrefix(row, "token") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
newRows = append(newRows, row)
|
|
|
|
}
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Msg = strings.Join(newRows, "\n")
|
2019-01-31 17:17:34 +08:00
|
|
|
}
|
2019-01-31 18:35:44 +08:00
|
|
|
|
|
|
|
// PUT api/config
|
|
|
|
func (svr *Service) apiPutConfig(w http.ResponseWriter, r *http.Request) {
|
2019-02-11 11:26:06 +08:00
|
|
|
res := GeneralResponse{Code: 200}
|
2019-01-31 18:35:44 +08:00
|
|
|
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http put request [/api/config]")
|
2019-01-31 18:35:44 +08:00
|
|
|
defer func() {
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Info("Http put response [/api/config], code [%d]", res.Code)
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
}
|
2019-01-31 18:35:44 +08:00
|
|
|
}()
|
|
|
|
|
|
|
|
// get new config content
|
|
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2019-01-31 18:35:44 +08:00
|
|
|
res.Msg = fmt.Sprintf("read request body error: %v", err)
|
|
|
|
log.Warn("%s", res.Msg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-02 10:49:24 +08:00
|
|
|
if len(body) == 0 {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2019-02-02 10:49:24 +08:00
|
|
|
res.Msg = "body can't be empty"
|
|
|
|
log.Warn("%s", res.Msg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-31 18:35:44 +08:00
|
|
|
// get token from origin content
|
|
|
|
token := ""
|
|
|
|
b, err := ioutil.ReadFile(g.GlbClientCfg.CfgFile)
|
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 400
|
2019-01-31 18:35:44 +08:00
|
|
|
res.Msg = err.Error()
|
2019-02-11 11:26:06 +08:00
|
|
|
log.Warn("load frpc config file error: %s", res.Msg)
|
2019-01-31 18:35:44 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
content := string(b)
|
|
|
|
|
|
|
|
for _, row := range strings.Split(content, "\n") {
|
|
|
|
row = strings.TrimSpace(row)
|
|
|
|
if strings.HasPrefix(row, "token") {
|
|
|
|
token = row
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpRows := make([]string, 0)
|
|
|
|
for _, row := range strings.Split(string(body), "\n") {
|
|
|
|
row = strings.TrimSpace(row)
|
|
|
|
if strings.HasPrefix(row, "token") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tmpRows = append(tmpRows, row)
|
|
|
|
}
|
|
|
|
|
|
|
|
newRows := make([]string, 0)
|
|
|
|
if token != "" {
|
|
|
|
for _, row := range tmpRows {
|
|
|
|
newRows = append(newRows, row)
|
|
|
|
if strings.HasPrefix(row, "[common]") {
|
|
|
|
newRows = append(newRows, token)
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 14:59:30 +08:00
|
|
|
} else {
|
|
|
|
newRows = tmpRows
|
2019-01-31 18:35:44 +08:00
|
|
|
}
|
|
|
|
content = strings.Join(newRows, "\n")
|
|
|
|
|
|
|
|
err = ioutil.WriteFile(g.GlbClientCfg.CfgFile, []byte(content), 0644)
|
|
|
|
if err != nil {
|
2019-02-11 11:26:06 +08:00
|
|
|
res.Code = 500
|
2019-01-31 18:35:44 +08:00
|
|
|
res.Msg = fmt.Sprintf("write content to frpc config file error: %v", err)
|
|
|
|
log.Warn("%s", res.Msg)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|