.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
limiter.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Bot protection / IP rate limitation. The intention of rate limitation is to
3limit suspicious requests from an IP. The motivation behind this is the fact
4that SearXNG passes through requests from bots and is thus classified as a bot
5itself. As a result, the SearXNG engine then receives a CAPTCHA or is blocked
6by the search engine (the origin) in some other way.
7
8To avoid blocking, the requests from bots to SearXNG must also be blocked, this
9is the task of the limiter. To perform this task, the limiter uses the methods
10from the :ref:`botdetection`:
11
12- Analysis of the HTTP header in the request / :ref:`botdetection probe headers`
13 can be easily bypassed.
14
15- Block and pass lists in which IPs are listed / :ref:`botdetection ip_lists`
16 are hard to maintain, since the IPs of bots are not all known and change over
17 the time.
18
19- Detection & dynamically :ref:`botdetection rate limit` of bots based on the
20 behavior of the requests. For dynamically changeable IP lists a Redis
21 database is needed.
22
23The prerequisite for IP based methods is the correct determination of the IP of
24the client. The IP of the client is determined via the X-Forwarded-For_ HTTP
25header.
26
27.. attention::
28
29 A correct setup of the HTTP request headers ``X-Forwarded-For`` and
30 ``X-Real-IP`` is essential to be able to assign a request to an IP correctly:
31
32 - `NGINX RequestHeader`_
33 - `Apache RequestHeader`_
34
35.. _X-Forwarded-For:
36 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For
37.. _NGINX RequestHeader:
38 https://docs.searxng.org/admin/installation-nginx.html#nginx-s-searxng-site
39.. _Apache RequestHeader:
40 https://docs.searxng.org/admin/installation-apache.html#apache-s-searxng-site
41
42Enable Limiter
43==============
44
45To enable the limiter activate:
46
47.. code:: yaml
48
49 server:
50 ...
51 limiter: true # rate limit the number of request on the instance, block some bots
52
53and set the redis-url connection. Check the value, it depends on your redis DB
54(see :ref:`settings redis`), by example:
55
56.. code:: yaml
57
58 redis:
59 url: unix:///usr/local/searxng-redis/run/redis.sock?db=0
60
61
62Configure Limiter
63=================
64
65The methods of :ref:`botdetection` the limiter uses are configured in a local
66file ``/etc/searxng/limiter.toml``. The defaults are shown in limiter.toml_ /
67Don't copy all values to your local configuration, just enable what you need by
68overwriting the defaults. For instance to activate the ``link_token`` method in
69the :ref:`botdetection.ip_limit` you only need to set this option to ``true``:
70
71.. code:: toml
72
73 [botdetection.ip_limit]
74 link_token = true
75
76.. _limiter.toml:
77
78``limiter.toml``
79================
80
81In this file the limiter finds the configuration of the :ref:`botdetection`:
82
83- :ref:`botdetection ip_lists`
84- :ref:`botdetection rate limit`
85- :ref:`botdetection probe headers`
86
87.. kernel-include:: $SOURCEDIR/limiter.toml
88 :code: toml
89
90Implementation
91==============
92
93"""
94
95from __future__ import annotations
96import sys
97
98from pathlib import Path
99from ipaddress import ip_address
100import flask
101import werkzeug
102
103from searx import (
104 logger,
105 redisdb,
106)
107from searx import botdetection
108from searx.botdetection import (
109 config,
110 http_accept,
111 http_accept_encoding,
112 http_accept_language,
113 http_user_agent,
114 ip_limit,
115 ip_lists,
116 get_network,
117 get_real_ip,
118 dump_request,
119)
120
121# the configuration are limiter.toml and "limiter" in settings.yml so, for
122# coherency, the logger is "limiter"
123logger = logger.getChild('limiter')
124
125CFG: config.Config = None # type: ignore
126_INSTALLED = False
127
128LIMITER_CFG_SCHEMA = Path(__file__).parent / "limiter.toml"
129"""Base configuration (schema) of the botdetection."""
130
131LIMITER_CFG = Path('/etc/searxng/limiter.toml')
132"""Local Limiter configuration."""
133
134CFG_DEPRECATED = {
135 # "dummy.old.foo": "config 'dummy.old.foo' exists only for tests. Don't use it in your real project config."
136}
137
138
139def get_cfg() -> config.Config:
140 global CFG # pylint: disable=global-statement
141 if CFG is None:
142 CFG = config.Config.from_toml(LIMITER_CFG_SCHEMA, LIMITER_CFG, CFG_DEPRECATED)
143 return CFG
144
145
146def filter_request(request: flask.Request) -> werkzeug.Response | None:
147 # pylint: disable=too-many-return-statements
148
149 cfg = get_cfg()
150 real_ip = ip_address(get_real_ip(request))
151 network = get_network(real_ip, cfg)
152
153 if request.path == '/healthz':
154 return None
155
156 # link-local
157
158 if network.is_link_local:
159 return None
160
161 # block- & pass- lists
162 #
163 # 1. The IP of the request is first checked against the pass-list; if the IP
164 # matches an entry in the list, the request is not blocked.
165 # 2. If no matching entry is found in the pass-list, then a check is made against
166 # the block list; if the IP matches an entry in the list, the request is
167 # blocked.
168 # 3. If the IP is not in either list, the request is not blocked.
169
170 match, msg = ip_lists.pass_ip(real_ip, cfg)
171 if match:
172 logger.warning("PASS %s: matched PASSLIST - %s", network.compressed, msg)
173 return None
174
175 match, msg = ip_lists.block_ip(real_ip, cfg)
176 if match:
177 logger.error("BLOCK %s: matched BLOCKLIST - %s", network.compressed, msg)
178 return flask.make_response(('IP is on BLOCKLIST - %s' % msg, 429))
179
180 # methods applied on /
181
182 for func in [
183 http_user_agent,
184 ]:
185 val = func.filter_request(network, request, cfg)
186 if val is not None:
187 return val
188
189 # methods applied on /search
190
191 if request.path == '/search':
192
193 for func in [
194 http_accept,
195 http_accept_encoding,
196 http_accept_language,
197 http_user_agent,
198 ip_limit,
199 ]:
200 val = func.filter_request(network, request, cfg)
201 if val is not None:
202 return val
203 logger.debug(f"OK {network}: %s", dump_request(flask.request))
204 return None
205
206
208 """See :py:obj:`flask.Flask.before_request`"""
209 return filter_request(flask.request)
210
211
213 """Returns ``True`` if limiter is active and a redis DB is available."""
214 return _INSTALLED
215
216
217def initialize(app: flask.Flask, settings):
218 """Install the limiter"""
219 global _INSTALLED # pylint: disable=global-statement
220
221 # even if the limiter is not activated, the botdetection must be activated
222 # (e.g. the self_info plugin uses the botdetection to get client IP)
223
224 cfg = get_cfg()
225 redis_client = redisdb.client()
226 botdetection.init(cfg, redis_client)
227
228 if not (settings['server']['limiter'] or settings['server']['public_instance']):
229 return
230
231 if not redis_client:
232 logger.error(
233 "The limiter requires Redis, please consult the documentation: "
234 "https://docs.searxng.org/admin/searx.limiter.html"
235 )
236 if settings['server']['public_instance']:
237 sys.exit(1)
238 return
239
240 _INSTALLED = True
241
242 if settings['server']['public_instance']:
243 # overwrite limiter.toml setting
244 cfg.set('botdetection.ip_limit.link_token', True)
245
246 app.before_request(pre_request)
config.Config get_cfg()
Definition limiter.py:139
initialize(flask.Flask app, settings)
Definition limiter.py:217
werkzeug.Response|None filter_request(flask.Request request)
Definition limiter.py:146