-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #279 from sipcapture/lua_script
Lua script
- Loading branch information
Showing
17 changed files
with
3,004 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,35 @@ Download [heplify.exe](https://github.com/sipcapture/heplify/releases) | |
|
||
If you have Go 1.18+ installed, build the latest heplify binary by running `make`. | ||
|
||
Now you should install LUA Jit: | ||
|
||
* Compile from sources: | ||
|
||
Install luajit dev libary | ||
|
||
`apt-get install libluajit-5.1-dev` | ||
|
||
or | ||
|
||
`yum install luajit-devel` | ||
|
||
or for macOS | ||
|
||
```sh | ||
# Assuming brew installs to /usr/local/ | ||
brew install [email protected] luajit | ||
ln -s /usr/local/lib/pkgconfig/luajit.pc /usr/local/lib/pkgconfig/luajit-5.1.pc | ||
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ | ||
``` | ||
|
||
[install](https://golang.org/doc/install) Go 1.11+ | ||
|
||
`go build cmd/heplify/heplify.go` | ||
|
||
|
||
|
||
|
||
|
||
You can also build a docker image: | ||
|
||
```bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
package decoder | ||
|
||
import ( | ||
"fmt" | ||
"net" | ||
"strconv" | ||
|
||
"github.com/negbie/logp" | ||
"github.com/sipcapture/golua/lua" | ||
"github.com/sipcapture/heplify/decoder/luar" | ||
) | ||
|
||
// LuaEngine | ||
type LuaEngine struct { | ||
/* pointer to modify */ | ||
pkt **Packet | ||
functions []string | ||
LuaEngine *lua.State | ||
} | ||
|
||
func (d *LuaEngine) GetHEPProtoType() uint32 { | ||
return (*d.pkt).GetProtoType() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPSrcIP() string { | ||
return (*d.pkt).GetSrcIP() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPSrcPort() uint16 { | ||
return (*d.pkt).GetSrcPort() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPDstIP() string { | ||
return (*d.pkt).GetDstIP() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPDstPort() uint16 { | ||
return (*d.pkt).GetDstPort() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPTimeSeconds() uint32 { | ||
return (*d.pkt).GetTsec() | ||
} | ||
|
||
func (d *LuaEngine) GetHEPTimeUseconds() uint32 { | ||
return (*d.pkt).GetTmsec() | ||
} | ||
|
||
func (d *LuaEngine) GetRawMessage() string { | ||
return (*d.pkt).GetPayload() | ||
} | ||
|
||
func (d *LuaEngine) SetRawMessage(value string) { | ||
if (*d.pkt) == nil { | ||
logp.Err("can't set Raw message if HEP struct is nil, please check for nil in lua script") | ||
return | ||
} | ||
pkt := *d.pkt | ||
pkt.Payload = []byte(value) | ||
} | ||
|
||
func (d *LuaEngine) SetHEPField(field string, value string) { | ||
if (*d.pkt) == nil { | ||
logp.Err("can't set HEP field if HEP struct is nil, please check for nil in lua script") | ||
return | ||
} | ||
pkt := *d.pkt | ||
|
||
switch field { | ||
case "ProtoType": | ||
if i, err := strconv.Atoi(value); err == nil { | ||
pkt.ProtoType = byte(i) | ||
} | ||
case "SrcIP": | ||
pkt.SrcIP = net.ParseIP(value).To4() | ||
case "SrcPort": | ||
if i, err := strconv.Atoi(value); err == nil { | ||
pkt.SrcPort = uint16(i) | ||
} | ||
case "DstIP": | ||
pkt.DstIP = net.ParseIP(value).To4() | ||
case "DstPort": | ||
if i, err := strconv.Atoi(value); err == nil { | ||
pkt.DstPort = uint16(i) | ||
} | ||
|
||
case "CID": | ||
pkt.CID = []byte(value) | ||
|
||
} | ||
} | ||
|
||
func (d *LuaEngine) Logp(level string, message string, data interface{}) { | ||
if level == "ERROR" { | ||
logp.Err("[script] %s: %v", message, data) | ||
} else { | ||
logp.Debug("[script] %s: %v", message, data) | ||
} | ||
} | ||
|
||
func (d *LuaEngine) Close() { | ||
d.LuaEngine.Close() | ||
} | ||
|
||
// NewLuaEngine returns the script engine struct | ||
func NewLuaEngine() (*LuaEngine, error) { | ||
logp.Debug("script", "register Lua engine") | ||
|
||
d := &LuaEngine{} | ||
d.LuaEngine = lua.NewState() | ||
d.LuaEngine.OpenLibs() | ||
|
||
luar.Register(d.LuaEngine, "", luar.Map{ | ||
"GetHEPProtoType": d.GetHEPProtoType, | ||
"GetHEPSrcIP": d.GetHEPSrcIP, | ||
"GetHEPSrcPort": d.GetHEPSrcPort, | ||
"GetHEPDstIP": d.GetHEPDstIP, | ||
"GetHEPDstPort": d.GetHEPDstPort, | ||
"GetHEPTimeSeconds": d.GetHEPTimeSeconds, | ||
"GetHEPTimeUseconds": d.GetHEPTimeUseconds, | ||
"GetRawMessage": d.GetRawMessage, | ||
"SetRawMessage": d.SetRawMessage, | ||
"SetHEPField": d.SetHEPField, | ||
"HashTable": HashTable, | ||
"HashString": HashString, | ||
"Logp": d.Logp, | ||
"Print": fmt.Println, | ||
}) | ||
|
||
_, code, err := scanCode() | ||
if err != nil { | ||
logp.Err("Error in scan script: %v", err) | ||
return nil, err | ||
} | ||
|
||
err = d.LuaEngine.DoString(code.String()) | ||
if err != nil { | ||
logp.Err("Error in lua script: %v", err) | ||
return nil, err | ||
} | ||
|
||
d.functions = extractFunc(code) | ||
if len(d.functions) < 1 { | ||
logp.Err("no function name found in lua scripts: %v", err) | ||
return nil, fmt.Errorf("no function name found in lua scripts") | ||
} | ||
|
||
return d, nil | ||
} | ||
|
||
// Run will execute the script | ||
func (d *LuaEngine) Run(pkt *Packet) error { | ||
/* preload */ | ||
d.pkt = &pkt | ||
for _, v := range d.functions { | ||
err := d.LuaEngine.DoString(v) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
} |
Oops, something went wrong.