Skip to content

Commit 6abf468

Browse files
committedMay 14, 2022
update
1 parent 6f5de6e commit 6abf468

File tree

9 files changed

+85
-16
lines changed

9 files changed

+85
-16
lines changed
 

‎cgrpc/context.go

+15-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"google.golang.org/protobuf/reflect/protoreflect"
88
)
99

10-
func (s *CGrpcServer) getcontext(c context.Context, path string, peername string, peeraddr string, metadata map[string]string, handlers []OutsideHandler, d func(interface{}) error) *Context {
10+
func (s *CGrpcServer) getcontext(c context.Context, path string, peername string, remoteaddr string, metadata map[string]string, handlers []OutsideHandler, d func(interface{}) error) *Context {
1111
ctx, ok := s.ctxpool.Get().(*Context)
1212
if !ok {
1313
ctx = &Context{
@@ -16,7 +16,7 @@ func (s *CGrpcServer) getcontext(c context.Context, path string, peername string
1616
handlers: handlers,
1717
path: path,
1818
peername: peername,
19-
peeraddr: peeraddr,
19+
remoteaddr: remoteaddr,
2020
metadata: metadata,
2121
resp: nil,
2222
e: nil,
@@ -32,7 +32,7 @@ func (s *CGrpcServer) getcontext(c context.Context, path string, peername string
3232
ctx.handlers = handlers
3333
ctx.path = path
3434
ctx.peername = peername
35-
ctx.peeraddr = peeraddr
35+
ctx.remoteaddr = remoteaddr
3636
if metadata != nil {
3737
ctx.metadata = metadata
3838
}
@@ -54,7 +54,7 @@ type Context struct {
5454
handlers []OutsideHandler
5555
path string
5656
peername string
57-
peeraddr string
57+
remoteaddr string
5858
metadata map[string]string
5959
resp interface{}
6060
e *cerror.Error
@@ -96,8 +96,17 @@ func (c *Context) GetPath() string {
9696
func (c *Context) GetPeerName() string {
9797
return c.peername
9898
}
99-
func (c *Context) GetPeerAddr() string {
100-
return c.peeraddr
99+
100+
//get the direct peer's addr(maybe a proxy)
101+
func (c *Context) GetRemoteAddr() string {
102+
return c.remoteaddr
103+
}
104+
105+
//this function try to return the first caller's ip(mostly time it will be the user's ip)
106+
//if can't get the first caller's ip,try to return the real peer's ip which will not be confused by proxy
107+
//if failed,the direct peer's ip will be returned(maybe a proxy)
108+
func (c *Context) GetClientIp() string {
109+
return c.metadata["Client-IP"]
101110
}
102111
func (c *Context) GetMetadata() map[string]string {
103112
return c.metadata

‎cgrpc/server.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ func (s *CGrpcServer) insidehandler(sname, mname string, handlers ...OutsideHand
202202
atomic.AddInt32(&s.totalreqnum, 1)
203203
defer atomic.AddInt32(&s.totalreqnum, -1)
204204
conninfo := ctx.Value(serverconnkey{}).(*stats.ConnTagInfo)
205+
remoteaddr := conninfo.RemoteAddr.String()
205206
localaddr := conninfo.LocalAddr.String()
206207
traceid := ""
207208
sourceip := ""
@@ -213,7 +214,6 @@ func (s *CGrpcServer) insidehandler(sname, mname string, handlers ...OutsideHand
213214
}
214215
}
215216
if sourceip == "" {
216-
remoteaddr := conninfo.RemoteAddr.String()
217217
sourceip = remoteaddr[:strings.LastIndex(remoteaddr, ":")]
218218
}
219219
sourceapp := "unknown"
@@ -263,7 +263,10 @@ func (s *CGrpcServer) insidehandler(sname, mname string, handlers ...OutsideHand
263263
monitor.GrpcServerMonitor(sourceapp, "GRPC", path, e, uint64(end.UnixNano()-start.UnixNano()))
264264
return
265265
}
266-
workctx := s.getcontext(ctx, path, sourceapp, sourceip, mdata, totalhandlers, decode)
266+
workctx := s.getcontext(ctx, path, sourceapp, remoteaddr, mdata, totalhandlers, decode)
267+
if _, ok := workctx.metadata["Client-IP"]; !ok {
268+
workctx.metadata["Client-IP"] = sourceip
269+
}
267270
defer func() {
268271
if e := recover(); e != nil {
269272
stack := make([]byte, 1024)

‎codegen/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import (
3131
"github.com/chenjie199234/Corelib/codegen/tml/service"
3232
servicestatus "github.com/chenjie199234/Corelib/codegen/tml/service/status"
3333
subservice "github.com/chenjie199234/Corelib/codegen/tml/service/sub"
34+
"github.com/chenjie199234/Corelib/codegen/tml/util"
3435
cname "github.com/chenjie199234/Corelib/util/name"
3536
)
3637

@@ -217,6 +218,9 @@ func createBaseProject() {
217218
model.CreatePathAndFile()
218219
model.Execute()
219220

221+
util.CreatePathAndFile()
222+
util.Execute()
223+
220224
xcrpc.CreatePathAndFile()
221225
xcrpc.Execute(*packagename)
222226

‎codegen/tml/util/util.go

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package util
2+
3+
import (
4+
"fmt"
5+
"os"
6+
"text/template"
7+
)
8+
9+
const text = `package util`
10+
11+
const path = "./util/"
12+
const name = "util.go"
13+
14+
var tml *template.Template
15+
var file *os.File
16+
17+
func init() {
18+
var e error
19+
tml, e = template.New("util").Parse(text)
20+
if e != nil {
21+
panic(fmt.Sprintf("create template error:%s", e))
22+
}
23+
}
24+
func CreatePathAndFile() {
25+
var e error
26+
if e = os.MkdirAll(path, 0755); e != nil {
27+
panic(fmt.Sprintf("make dir:%s error:%s", path, e))
28+
}
29+
file, e = os.OpenFile(path+name, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0644)
30+
if e != nil {
31+
panic(fmt.Sprintf("make file:%s error:%s", path+name, e))
32+
}
33+
}
34+
func Execute() {
35+
if e := tml.Execute(file, nil); e != nil {
36+
panic(fmt.Sprintf("write content into file:%s error:%s", path+name, e))
37+
}
38+
}

‎crpc/context.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,17 @@ func (c *Context) GetPath() string {
9898
func (c *Context) GetBody() []byte {
9999
return c.msg.Body
100100
}
101+
102+
//get the direct peer's addr(maybe a proxy)
101103
func (c *Context) GetRemoteAddr() string {
102104
return c.peer.GetRemoteAddr()
103105
}
104106

105-
//this is only useful for crpc server
106-
//when the client connection is based on websocket and there is a load balancer before it like nginx
107-
//then the realPeerIP may different from the remoteaddr
108-
func (c *Context) GetRealPeerIP() string {
109-
return c.peer.GetRealPeerIp()
107+
//this function try to return the first caller's ip(mostly time it will be the user's ip)
108+
//if can't get the first caller's ip,try to return the real peer's ip which will not be confused by proxy
109+
//if failed,the direct peer's ip will be returned(maybe a proxy)
110+
func (c *Context) GetClientIp() string {
111+
return c.metadata["Client-IP"]
110112
}
111113
func (c *Context) GetPeerMaxMsgLen() uint32 {
112114
return c.peer.GetPeerMaxMsgLen()

‎crpc/server.go

+3
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,9 @@ func (s *CrpcServer) insidehandler(path string, handlers ...OutsideHandler) func
257257
}
258258
//logic
259259
workctx := s.getContext(ctx, p, msg, totalhandlers)
260+
if _, ok := workctx.metadata["Client-IP"]; !ok {
261+
workctx.metadata["Client-IP"] = sourceip
262+
}
260263
defer func() {
261264
if e := recover(); e != nil {
262265
stack := make([]byte, 1024)

‎web/context.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,19 @@ func (c *Context) GetHeader(key string) string {
137137
func (c *Context) GetPeerName() string {
138138
return c.peername
139139
}
140-
func (c *Context) GetPeerAddr() string {
140+
141+
//get the direct peer's addr(maybe a proxy)
142+
func (c *Context) GetRemoteAddr() string {
141143
return c.r.RemoteAddr
142144
}
145+
146+
//this function try to return the first caller's ip(mostly time it will be the user's ip)
147+
//if can't get the first caller's ip,try to return the real peer's ip which will not be confused by proxy
148+
//if failed,the direct peer's ip will be returned(maybe a proxy)
143149
func (c *Context) GetClientIp() string {
144-
return getclientip(c.r)
150+
return c.metadata["Client-IP"]
145151
}
152+
146153
func getclientip(r *http.Request) string {
147154
ip := strings.TrimSpace(r.Header.Get("X-Forwarded-For"))
148155
if ip != "" {

‎web/protoc-gen-go-web/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# protoc-gen-go-web
22

33
## Description
4-
protoc-gen-go-web是一个基于proto文件生成http框架的桩代码的工具
4+
protoc-gen-go-web是一个基于proto文件生成web框架的桩代码的工具
55
所有的接口定义都使用一套proto文件,清晰明了,规范化接口管理
66

77
## Installation

‎web/server.go

+3
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,9 @@ func (s *WebServer) insideHandler(method, path string, handlers []OutsideHandler
615615
}
616616
//logic
617617
workctx := s.getContext(w, r, ctx, sourceapp, mdata, totalhandlers)
618+
if _, ok := workctx.metadata["Client-IP"]; !ok {
619+
workctx.metadata["Client-IP"] = sourceip
620+
}
618621
defer func() {
619622
if e := recover(); e != nil {
620623
stack := make([]byte, 1024)

0 commit comments

Comments
 (0)
Please sign in to comment.