Skip to content

Commit 6b441c5

Browse files
committed
增加Memcache UDP蜜罐支持
1 parent 219cab2 commit 6b441c5

File tree

1 file changed

+56
-28
lines changed

1 file changed

+56
-28
lines changed

core/protocol/memcache/memcache.go

+56-28
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ func tcpServer(address string, exitChan chan int) {
404404
exitChan <- 1
405405
}
406406

407-
log.Println("[Memcache] Listning on " + address)
407+
log.Println("[Memcache TCP] Listning on " + address)
408408

409409
defer l.Close()
410410

@@ -420,21 +420,21 @@ func tcpServer(address string, exitChan chan int) {
420420
go func() {
421421
skip := false
422422
reader := bufio.NewReader(conn)
423-
log.Printf("[Memcache %d] Accepted a client socket from %s\n", trackID, conn.RemoteAddr().String())
423+
log.Printf("[Memcache TCP %d] Accepted a client socket from %s\n", trackID, conn.RemoteAddr().String())
424424
for {
425425
str, err := reader.ReadString('\n')
426426
if skip {
427427
skip = false
428428
continue
429429
}
430430
if err != nil {
431-
log.Printf("[Memcache %d] Closed a client socket.", trackID)
431+
log.Printf("[Memcache TCP %d] Closed a client socket.\n", trackID)
432432
conn.Close()
433433
break
434434
}
435435
str = strings.TrimSpace(str)
436436

437-
log.Printf("[Memcache %d] Client request: %s.", trackID, str)
437+
log.Printf("[Memcache TCP %d] Client request: %s.\n", trackID, str)
438438
args := strings.Split(str, " ")
439439
function, exist := commands[args[0]]
440440
if !exist {
@@ -470,37 +470,65 @@ func tcpServer(address string, exitChan chan int) {
470470

471471
}
472472

473-
// func udpServer(address string, exitChan chan int) {
474-
// udpAddr, err := net.ResolveUDPAddr("udp", address)
475-
// if err != nil {
476-
// fmt.Println(err.Error())
477-
// exitChan <- 1
478-
// }
479-
480-
// l, err := net.ListenUDP("udp", udpAddr)
481-
// if err != nil {
482-
// fmt.Println(err.Error())
483-
// exitChan <- 1
484-
// }
485-
486-
// go func() {
487-
// buf := make([]byte, 1500)
488-
// for {
489-
// buf := make([]byte, 1500)
490-
// plen, addr, _ := l.ReadFromUDP(buf)
491-
492-
// }
493-
// }
494-
// }()
495-
// }
473+
func udpServer(address string, exitChan chan int) {
474+
udpAddr, err := net.ResolveUDPAddr("udp", address)
475+
if err != nil {
476+
fmt.Println(err.Error())
477+
exitChan <- 1
478+
}
479+
480+
l, err := net.ListenUDP("udp", udpAddr)
481+
if err != nil {
482+
fmt.Println(err.Error())
483+
exitChan <- 1
484+
}
485+
486+
log.Println("[Memcache UDP] Listning on " + address)
487+
488+
go func() {
489+
buf := make([]byte, 1500)
490+
for {
491+
plen, addr, _ := l.ReadFromUDP(buf)
492+
/* UDP协议需要8个字节的头 */
493+
if plen < 8 {
494+
continue
495+
}
496+
requestStr := string(buf[8:plen])
497+
498+
for _, request := range strings.Split(requestStr, "\n") {
499+
request = strings.TrimSpace(request)
500+
if request == "" {
501+
continue
502+
}
503+
log.Printf("[Memcache UDP] Client request: [%s] from: %s\n", request, addr.String())
504+
args := strings.Split(request, " ")
505+
function, exist := commands[args[0]]
506+
if !exist {
507+
continue
508+
}
509+
args = args[1:]
510+
511+
response, requiredBytes := function(args)
512+
if requiredBytes != 0 {
513+
continue
514+
}
515+
if len(response) > 1300 {
516+
response = response[:1300]
517+
}
518+
l.WriteTo(append([]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00}, response...), addr)
519+
}
520+
521+
}
522+
}()
523+
}
496524

497525
func Start(addr string) {
498526
// 创建一个程序结束码的通道
499527
exitChan := make(chan int)
500528

501529
// 将服务器并发运行
502530
go tcpServer(addr, exitChan)
503-
// go udpServer(addr, exitChan)
531+
go udpServer(addr, exitChan)
504532

505533
// 通道阻塞,等待接受返回值
506534
code := <-exitChan

0 commit comments

Comments
 (0)