mirror of https://github.com/fatedier/frp
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.
73 lines
1.7 KiB
73 lines
1.7 KiB
8 years ago
|
// 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 plugin
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"net"
|
||
|
|
||
7 years ago
|
frpIo "github.com/fatedier/golib/io"
|
||
8 years ago
|
)
|
||
|
|
||
|
const PluginUnixDomainSocket = "unix_domain_socket"
|
||
|
|
||
|
func init() {
|
||
|
Register(PluginUnixDomainSocket, NewUnixDomainSocketPlugin)
|
||
|
}
|
||
|
|
||
|
type UnixDomainSocketPlugin struct {
|
||
|
UnixAddr *net.UnixAddr
|
||
|
}
|
||
|
|
||
|
func NewUnixDomainSocketPlugin(params map[string]string) (p Plugin, err error) {
|
||
|
unixPath, ok := params["plugin_unix_path"]
|
||
|
if !ok {
|
||
|
err = fmt.Errorf("plugin_unix_path not found")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
unixAddr, errRet := net.ResolveUnixAddr("unix", unixPath)
|
||
|
if errRet != nil {
|
||
|
err = errRet
|
||
|
return
|
||
|
}
|
||
|
|
||
|
p = &UnixDomainSocketPlugin{
|
||
|
UnixAddr: unixAddr,
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
5 years ago
|
func (uds *UnixDomainSocketPlugin) Handle(conn io.ReadWriteCloser, realConn net.Conn, extraBufToLocal []byte) {
|
||
8 years ago
|
localConn, err := net.DialUnix("unix", nil, uds.UnixAddr)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
6 years ago
|
if len(extraBufToLocal) > 0 {
|
||
|
localConn.Write(extraBufToLocal)
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
frpIo.Join(localConn, conn)
|
||
8 years ago
|
}
|
||
|
|
||
|
func (uds *UnixDomainSocketPlugin) Name() string {
|
||
|
return PluginUnixDomainSocket
|
||
|
}
|
||
|
|
||
|
func (uds *UnixDomainSocketPlugin) Close() error {
|
||
|
return nil
|
||
|
}
|