captive.whump.shanti-portal/README.md

80 lines
3.7 KiB
Markdown
Raw Normal View History

2016-04-05 14:43:13 +00:00
# Captive Portal
2016-04-15 17:27:44 +00:00
Captive portal webpage written with simplicity in mind.
- Present a webpage to the user
2016-09-13 07:29:57 +00:00
- User submits a form
2016-04-15 17:27:44 +00:00
- Plugins are executed with form data
- User is granted access to whatever treasure the portal is guarding
This is a commonly seen setup in public Wifi networks or hotspots.
2016-09-07 08:56:54 +00:00
This app was specifically written for such a hotspot and as such requires a lot of other configuration around it. This is an ongoing [documentation project here](https://wiki.sydit.se/teknik:guider:networking:captive_portal_med_iptables).
2016-04-15 17:27:44 +00:00
2016-12-13 14:33:20 +00:00
## More documentation
I've moved all examples from the [aforementioned wiki-page](https://wiki.sydit.se/teknik:guider:networking:captive_portal_med_iptables) to the docs/examples directory.
2016-04-15 17:24:44 +00:00
# Plugins
Plugins are executed when the user clicks through the captive portal form, whether they submit data or just approve an EULA these plugins are executed.
Plugins accept data from the request of the user, as of writing this is only wsgi environ data.
2016-04-18 19:46:04 +00:00
Result of the plugins decide whether the user gets accepted into the portal or not. As such plugins have the potential to do anything from check the users IP against a whitelist to authenticate against a RADIUS server or Active Directory.
2016-04-18 19:42:29 +00:00
Sample plugins prefixed with sample\_ are a good starting point for understanding the plugins.
Plugins can be made mandatory, or skipped by being disabled, see plugins.cfg for more configuration.
2016-04-15 17:24:44 +00:00
## Why plugins, why job queue?
My primary use case for this portal would be with tens of thousands of users so already I imagined that creating firewall rules would be a blocking action.
Also with plugins there are options to connect other authentication methods like LDAP or RADIUS, and even other actions to the portal. All of which are possibly blocking. So plugins and job queues felt like a necessary technology to use. Otherwise this type of portal could be a very simple CGI script that runs a system() command.
2016-04-18 19:46:04 +00:00
2016-04-16 17:10:28 +00:00
# Get started
python setup.py install
python portal.py
## RQ worker
2016-04-15 17:24:44 +00:00
2016-04-15 17:25:02 +00:00
rq worker -u redis://127.0.0.1:6379/
2016-04-18 19:42:29 +00:00
# Deployment
See examples in docs/examples directory.
2016-12-15 11:22:22 +00:00
# Technical details
## IPtables
At the heart is iptables doing the following.
2016-12-15 11:22:57 +00:00
1. Labeling all traffic with the number 99 in the mangle table.
2. Labeled ICMP, DNS and HTTP traffic is redirected to the portal server in the nat table.
3. All other labeled traffic is dropped.
4. Authenticated clients are jumped out of the mangle table before being labeled, using the RETURN target.
5. Authenticated clients are also deleted from conntrack after having their exception rules created in the mangle table.
2016-12-15 11:22:22 +00:00
## Portal
All this is of course triggered by the portal application written in Python using Bottle.
2016-12-15 11:22:57 +00:00
1. A clients redirected HTTP traffic puts them in the portal webpage.
2. They send a POST form to the /approve url. This can be with user info, personal info, or simply an approve button for a EULA.
3. The portal executes its plugins in the order that their config section appears in plugins.cfg.
4. Each plugin is passed the request object from Bottle which contains form values among other things.
2016-12-15 11:22:22 +00:00
## Plugins
There's only one relevant plugin right now, iptables. But the idea is that you could add RADIUS plugins or other services. The mandatory flag in plugins.cfg decides if a plugin must pass before a client is authenticated. So you can string several plugins together for several actions that must be performed.
2016-12-15 11:24:19 +00:00
Each plugin responds with JSON.
2016-12-15 11:22:22 +00:00
### iptables plugin
2016-12-15 11:22:57 +00:00
1. Executes the ``iptables_cmd`` defined in plugins.cfg, with arguments being the client IP and potentially the client MAC address.
2016-12-15 11:24:19 +00:00
2. Ensures the exit code of ``iptables_cmd`` is 0, if not 0 it sets a failed flag in its JSON response.