1
- A Random IP reputation service acting as a Stream Processing Offload Agent
2
- --------------------------------------------------------------------------
1
+ Multi script langyage Stream Processing Offload Agent
2
+ -----------------------------------------------------
3
3
4
- This is a very simple service that implement a "random" ip reputation
5
- service. It will return random scores for all checked IP addresses. It only
6
- shows you how to implement a ip reputation service or such kind of services
7
- using the SPOE.
4
+ This agent receive SPOP message and process it with script languages. The
5
+ language register callback with a message. Each callback receive the list
6
+ of arguments with types according with the language capabilities. The
7
+ callback write variables which are sent as response when the processing
8
+ is done.
9
+
10
+
11
+ Compilation
12
+ ---------------
13
+
14
+ Actually, the server support Lua and Python. Type "make" with the options:
15
+ USE_LUA=1 and/or USE_PYTHON=1.
8
16
9
17
10
18
Start the service
@@ -19,70 +27,47 @@ binary:
19
27
-d Enable the debug mode
20
28
-p <port> Specify the port to listen on (default: 12345)
21
29
-n <num-workers> Specify the number of workers (default: 5)
30
+ -f <file> Load script according with the supported languages
22
31
23
- Note: A worker is a thread.
24
-
25
-
26
- Configure a SPOE to use the service
27
- ---------------------------------------
28
-
29
- All information about SPOE configuration can be found in "doc/SPOE.txt". Here is
30
- the configuration template to use for your SPOE:
31
-
32
- [ip-reputation]
33
-
34
- spoe-agent iprep-agent
35
- messages check-client-ip
36
-
37
- option var-prefix iprep
38
-
39
- timeout hello 100ms
40
- timeout idle 30s
41
- timeout processing 15ms
42
-
43
- use-backend iprep-backend
32
+ The file processor is recognized using the extension. .lua or .luac for lua and
33
+ .py for python. Start example:
44
34
45
- spoe-message check-client-ip
46
- args src
47
- event on-client-session
35
+ $> ./spoa -d -f ps_lua.lua
48
36
37
+ $> ./spoa -d -f ps_pyhton.py
49
38
50
- The engine is in the scope "ip-reputation". So to enable it, you must set the
51
- following line in a frontend/listener section:
52
39
53
- frontend my-front
54
- ...
55
- filter spoe engine ip-reputation config /path/spoe-ip-reputation.conf
56
- ....
40
+ Configure
41
+ -------------
57
42
58
- where "/path/spoe-ip-reputation.conf" is the path to your SPOE configuration
59
- file. The engine name is important here, it must be the same than the one used
60
- in the SPOE configuration file.
43
+ Sample configuration are join to this server:
61
44
62
- IMPORTANT NOTE:
63
- Because we want to send a message on the "on-client-session" event, this
64
- SPOE must be attached to a proxy with the frontend capability. If it is
65
- declared in a backend section, it will have no effet.
45
+ spoa-server.conf : The HAProxy configuration file using SPOE server
46
+ spoa-server.spoe.conf : The SPOP description file used by HAProxy
47
+ ps_lua.lua : Processing Lua example
48
+ ps_python.py : Processing Python example
66
49
67
50
68
- Because, in SPOE configuration file, we declare to use the backend
69
- "iprep-backend" to communicate with the service, you must define it in HAProxy
70
- configuration. For example:
51
+ Considerations
52
+ ------------------
71
53
72
- backend iprep-backend
73
- mode tcp
74
- timeout server 1m
75
- server iprep-srv 127.0.0.1:12345 check maxconn 5
54
+ This server is a beta version. It works fine, but some improvement will be
55
+ welcome:
76
56
57
+ Main process:
77
58
78
- In reply to the "check-client-ip" message, this service will set the variable
79
- "ip_score" for the session, an integer between 0 and 100. If unchanged, the
80
- variable prefix is "iprep". So the full variable name will be
81
- "sess.iprep.ip_score".
59
+ * Improve log management: Today the log are sent on stdout.
60
+ * Improve process management: The dead process are ignored.
61
+ * Implement systemd integration.
62
+ * Implement threads: It would be fine to implement thread working. Shared
63
+ memory is welcome for managing database connection pool and something like
64
+ that.
65
+ * Add PHP support and some other languages.
82
66
83
- You can use it in ACLs to experiment the SPOE feature. For example :
67
+ Python :
84
68
85
- tcp-request content reject if { var(sess.iprep.ip_score) -m int lt 20 }
69
+ * Improve repporting: Catch python error message and repport it in the right
70
+ place. Today the error are dumped on stdout. How using syslog for logging
71
+ stack traces ?
86
72
87
- With this rule, all IP address with a score lower than 20 will be rejected
88
- (Remember, this score is random).
73
+ Maybe some other things...
0 commit comments