fmtr.tools 1.3.15__py3-none-any.whl → 1.3.17__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fmtr.tools might be problematic. Click here for more details.

@@ -10,6 +10,19 @@ from typing import Self, Optional, List
10
10
 
11
11
  from fmtr.tools.string_tools import join
12
12
 
13
+ TTL_CODE_DEFAULTS = {
14
+ dnsrcode.NOERROR: 300, # Successful query
15
+ dnsrcode.FORMERR: 60, # Format error
16
+ dnsrcode.SERVFAIL: 10, # Server failure
17
+ dnsrcode.NXDOMAIN: 60 * 60, # Non-existent domain
18
+ dnsrcode.NOTIMP: 60, # Not implemented
19
+ dnsrcode.REFUSED: 60, # Refused
20
+ dnsrcode.YXDOMAIN: 600, # Name exists when it should not
21
+ dnsrcode.YXRRSET: 600, # RR Set exists when it should not
22
+ dnsrcode.NXRRSET: 300, # RR Set that should exist does not
23
+ dnsrcode.NOTAUTH: 60, # Not authorized
24
+ dnsrcode.NOTZONE: 60 # Name not contained in zone
25
+ }
13
26
 
14
27
  @dataclass
15
28
  class BaseDNSData:
@@ -68,6 +81,24 @@ class Response(BaseDNSData):
68
81
  def rcode_text(self) -> str:
69
82
  return dnsrcode.to_text(self.rcode)
70
83
 
84
+ @property
85
+ def ttl(self) -> int:
86
+ """
87
+
88
+ Get median TTL from answers, falling back to authority, then to error-code defaults.
89
+
90
+ """
91
+ answers = self.message.answer or self.message.authority
92
+ if answers:
93
+ ttls = [answer.ttl for answer in answers]
94
+ ttl = min(ttls)
95
+ return ttl
96
+
97
+ ttl = TTL_CODE_DEFAULTS.get(self.rcode, dnsrcode.NXDOMAIN)
98
+ return ttl
99
+
100
+
101
+
71
102
  def __str__(self):
72
103
  """
73
104
 
@@ -148,6 +179,9 @@ class Exchange:
148
179
  client_name: Optional[str] = None
149
180
  is_complete: bool = False
150
181
 
182
+ @property
183
+ def addr(self):
184
+ return self.ip, self.port
151
185
 
152
186
  @classmethod
153
187
  def from_wire(cls, wire: bytes, **kwargs) -> Self:
@@ -163,26 +197,25 @@ class Exchange:
163
197
  def question_last(self) -> RRset:
164
198
  """
165
199
 
166
- Contrive an RRset representing the latest/current question. This can be the original question - or a hybrid one if we've injected our own answers into the exchange.
200
+ Create an RRset surrogate representing the latest/current question. This can be the original question - or a hybrid one if we've injected our own answers into the Exchange.
167
201
 
168
202
  """
169
203
  if self.answers_pre:
170
204
  rrset = self.answers_pre[-1]
171
- ty = self.request.type
205
+ rdtype = self.request.type
172
206
  ttl = self.request.question.ttl
173
207
  rdclass = self.request.question.rdclass
174
208
  name = next(iter(rrset.items.keys())).to_text()
175
-
176
- rrset_contrived = dns.rrset.from_text(
209
+ rrset_surrogate = dns.rrset.from_text(
177
210
  name=name,
178
211
  ttl=ttl,
179
- rdtype=ty,
212
+ rdtype=rdtype,
180
213
  rdclass=rdclass,
181
214
  )
182
215
 
183
- return rrset_contrived
216
+ return rrset_surrogate
184
217
  else:
185
- return self.request.question # Solves the issue of digging out the name.
218
+ return self.request.question
186
219
 
187
220
  @property
188
221
  def query_last(self) -> QueryMessage:
@@ -39,7 +39,7 @@ class Proxy(server.Plain):
39
39
  """
40
40
  exchange.is_complete = True
41
41
 
42
- def resolve(self, exchange: Exchange) -> Exchange:
42
+ async def resolve(self, exchange: Exchange) -> Exchange:
43
43
  """
44
44
 
45
45
  Resolve a request, processing each stage, initial question, upstream response etc.
@@ -1,7 +1,9 @@
1
- import socket
2
- from dataclasses import dataclass
1
+ import asyncio
2
+ import dns.rcode
3
+ from dataclasses import dataclass, field
3
4
  from datetime import timedelta
4
5
  from functools import cached_property
6
+ from typing import Optional
5
7
 
6
8
  from fmtr.tools import caching_tools as caching
7
9
  from fmtr.tools.dns_tools.dm import Exchange
@@ -9,59 +11,61 @@ from fmtr.tools.logging_tools import logger
9
11
 
10
12
 
11
13
  @dataclass(kw_only=True, eq=False)
12
- class Plain:
14
+ class Plain(asyncio.DatagramProtocol):
13
15
  """
14
16
 
15
- Base for starting a plain DNS server
16
-
17
+ Async base class for a plain DNS server using asyncio DatagramProtocol.
17
18
  """
18
19
 
19
20
  host: str
20
21
  port: int
22
+ transport: Optional[asyncio.DatagramTransport] = field(default=None, init=False)
21
23
 
22
24
  @cached_property
23
- def sock(self):
24
- return socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
25
+ def loop(self):
26
+ return asyncio.get_event_loop()
27
+
25
28
 
26
29
  @cached_property
27
30
  def cache(self):
28
31
  """
29
32
 
30
33
  Overridable cache.
31
-
32
34
  """
33
35
  cache = caching.TLRU(maxsize=1_024, ttu_static=timedelta(hours=1), desc='DNS Request')
34
36
  return cache
35
37
 
36
- def start(self):
37
- """
38
+ def connection_made(self, transport: asyncio.DatagramTransport):
39
+ self.transport = transport
40
+ logger.info(f'Listening on {self.host}:{self.port}')
38
41
 
39
- Listen and resolve via overridden resolve method.
42
+ def datagram_received(self, data: bytes, addr):
43
+ ip, port = addr
44
+ exchange = Exchange.from_wire(data, ip=ip, port=port)
45
+ asyncio.create_task(self.handle(exchange))
40
46
 
47
+ async def start(self):
41
48
  """
42
- sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
43
- sock.bind((self.host, self.port))
44
- logger.info(f'Listening on {self.host}:{self.port}')
45
- while True:
46
- data, (ip, port) = sock.recvfrom(512)
47
- exchange = Exchange.from_wire(data, ip=ip, port=port)
48
- self.handle(exchange)
49
- sock.sendto(exchange.response.message.to_wire(), (ip, port))
50
49
 
51
- def resolve(self, exchange: Exchange) -> Exchange:
50
+ Start the async UDP server.
52
51
  """
53
52
 
54
- Defined in subclasses
53
+ logger.info(f'Starting async DNS server on {self.host}:{self.port}...')
54
+ await self.loop.create_datagram_endpoint(
55
+ lambda: self,
56
+ local_addr=(self.host, self.port)
57
+ )
58
+ await asyncio.Future() # Prevent exit by blocking forever
55
59
 
60
+ async def resolve(self, exchange: Exchange) -> Exchange:
56
61
  """
57
- raise NotImplemented
58
62
 
59
- def check_cache(self, exchange: Exchange):
60
- """
61
-
62
- Check cache, patch in in new ID and mark complete
63
+ To be defined in subclasses.
63
64
 
64
65
  """
66
+ raise NotImplementedError
67
+
68
+ def check_cache(self, exchange: Exchange):
65
69
  if exchange.key in self.cache:
66
70
  logger.info(f'Request found in cache.')
67
71
  exchange.response = self.cache[exchange.key]
@@ -88,25 +92,30 @@ class Plain:
88
92
  """
89
93
  request = exchange.request
90
94
  response = exchange.response
91
-
92
95
  logger.info(
93
96
  f'Resolution complete {exchange.client_name=} {request.message.id=} {request.type_text} {request.name_text} {request.question=} {exchange.is_complete=} {response.rcode=} {response.rcode_text=} {response.answer=} {response.blocked_by=}...'
94
97
  )
95
98
 
99
+ def log_dns_errors(self, exchange: Exchange):
100
+ """
96
101
 
102
+ Warn about any errors
97
103
 
98
- def handle(self, exchange: Exchange):
99
104
  """
105
+ if exchange.response.rcode != dns.rcode.NOERROR:
106
+ logger.warning(f'Error {exchange.response.rcode_text=}')
100
107
 
101
- Check validity of request, reverse lookup client address, check presence in cache and resolve.
102
-
108
+ async def handle(self, exchange: Exchange):
103
109
  """
104
110
 
111
+ Warn about any errors
112
+
113
+ """
105
114
  if not exchange.request.is_valid:
106
115
  raise ValueError(f'Only one question per request is supported. Got {len(exchange.request.question)} questions.')
107
116
 
108
117
  if not exchange.is_internal:
109
- self.handle(exchange.reverse)
118
+ await self.handle(exchange.reverse)
110
119
  client_name = exchange.reverse.question_last.name.to_text()
111
120
  if not exchange.reverse.response.answer:
112
121
  logger.warning(f'Client name could not be resolved {client_name=}.')
@@ -117,10 +126,10 @@ class Plain:
117
126
  self.check_cache(exchange)
118
127
 
119
128
  if not exchange.is_complete:
120
- exchange = self.resolve(exchange)
121
- exchange.is_complete = True
129
+ exchange = await self.resolve(exchange)
130
+ self.cache[exchange.key] = exchange.response
122
131
 
123
- self.cache[exchange.key] = exchange.response
132
+ self.log_dns_errors(exchange)
124
133
  self.log_response(exchange)
125
134
 
126
- return exchange
135
+ self.transport.sendto(exchange.response.message.to_wire(), exchange.addr)
fmtr/tools/version CHANGED
@@ -1 +1 @@
1
- 1.3.15
1
+ 1.3.17
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fmtr.tools
3
- Version: 1.3.15
3
+ Version: 1.3.17
4
4
  Summary: Collection of high-level tools to simplify everyday development tasks, with a focus on AI/ML
5
5
  Home-page: https://github.com/fmtr/fmtr.tools
6
6
  Author: Frontmatter
@@ -126,61 +126,61 @@ Requires-Dist: logfire[httpx]; extra == "http"
126
126
  Provides-Extra: setup
127
127
  Requires-Dist: setuptools; extra == "setup"
128
128
  Provides-Extra: all
129
- Requires-Dist: logfire[fastapi]; extra == "all"
130
- Requires-Dist: json_repair; extra == "all"
131
- Requires-Dist: flet-webview; extra == "all"
132
- Requires-Dist: google-auth-oauthlib; extra == "all"
129
+ Requires-Dist: faker; extra == "all"
130
+ Requires-Dist: google-api-python-client; extra == "all"
131
+ Requires-Dist: peft; extra == "all"
132
+ Requires-Dist: setuptools; extra == "all"
133
+ Requires-Dist: torchvision; extra == "all"
134
+ Requires-Dist: tabulate; extra == "all"
135
+ Requires-Dist: html2text; extra == "all"
133
136
  Requires-Dist: httpx_retries; extra == "all"
134
- Requires-Dist: pandas; extra == "all"
137
+ Requires-Dist: transformers[sentencepiece]; extra == "all"
138
+ Requires-Dist: deepmerge; extra == "all"
139
+ Requires-Dist: openai; extra == "all"
140
+ Requires-Dist: appdirs; extra == "all"
141
+ Requires-Dist: logfire[httpx]; extra == "all"
142
+ Requires-Dist: bokeh; extra == "all"
143
+ Requires-Dist: sre_yield; extra == "all"
144
+ Requires-Dist: huggingface_hub; extra == "all"
145
+ Requires-Dist: json_repair; extra == "all"
146
+ Requires-Dist: pydevd-pycharm~=251.25410.159; extra == "all"
147
+ Requires-Dist: semver; extra == "all"
148
+ Requires-Dist: flet[all]; extra == "all"
149
+ Requires-Dist: docker; extra == "all"
150
+ Requires-Dist: pymupdf4llm; extra == "all"
135
151
  Requires-Dist: google-auth; extra == "all"
136
- Requires-Dist: yamlscript; extra == "all"
152
+ Requires-Dist: ollama; extra == "all"
153
+ Requires-Dist: tokenizers; extra == "all"
154
+ Requires-Dist: openpyxl; extra == "all"
137
155
  Requires-Dist: pydantic-ai[logfire,openai]; extra == "all"
138
- Requires-Dist: pydantic; extra == "all"
139
- Requires-Dist: setuptools; extra == "all"
140
- Requires-Dist: google-auth-httplib2; extra == "all"
156
+ Requires-Dist: pydantic-settings; extra == "all"
157
+ Requires-Dist: regex; extra == "all"
158
+ Requires-Dist: yamlscript; extra == "all"
159
+ Requires-Dist: logfire; extra == "all"
160
+ Requires-Dist: flet-webview; extra == "all"
161
+ Requires-Dist: google-auth-oauthlib; extra == "all"
162
+ Requires-Dist: torchaudio; extra == "all"
163
+ Requires-Dist: sentence_transformers; extra == "all"
141
164
  Requires-Dist: diskcache; extra == "all"
165
+ Requires-Dist: google-auth-httplib2; extra == "all"
166
+ Requires-Dist: contexttimer; extra == "all"
167
+ Requires-Dist: dnspython[doh]; extra == "all"
168
+ Requires-Dist: uvicorn[standard]; extra == "all"
142
169
  Requires-Dist: pymupdf; extra == "all"
170
+ Requires-Dist: pydantic; extra == "all"
143
171
  Requires-Dist: flet-video; extra == "all"
144
- Requires-Dist: contexttimer; extra == "all"
145
- Requires-Dist: faker; extra == "all"
146
- Requires-Dist: pytest-cov; extra == "all"
147
- Requires-Dist: logfire; extra == "all"
148
- Requires-Dist: bokeh; extra == "all"
149
- Requires-Dist: pydantic-settings; extra == "all"
150
- Requires-Dist: logfire[httpx]; extra == "all"
151
- Requires-Dist: appdirs; extra == "all"
152
- Requires-Dist: openpyxl; extra == "all"
172
+ Requires-Dist: pandas; extra == "all"
173
+ Requires-Dist: Unidecode; extra == "all"
174
+ Requires-Dist: httpx; extra == "all"
175
+ Requires-Dist: logfire[fastapi]; extra == "all"
153
176
  Requires-Dist: pyyaml; extra == "all"
154
- Requires-Dist: semver; extra == "all"
155
- Requires-Dist: fastapi; extra == "all"
156
- Requires-Dist: torchaudio; extra == "all"
157
- Requires-Dist: ollama; extra == "all"
158
- Requires-Dist: dask[bag]; extra == "all"
159
- Requires-Dist: torchvision; extra == "all"
160
- Requires-Dist: deepmerge; extra == "all"
161
- Requires-Dist: tokenizers; extra == "all"
162
177
  Requires-Dist: cachetools; extra == "all"
163
- Requires-Dist: uvicorn[standard]; extra == "all"
164
- Requires-Dist: sentence_transformers; extra == "all"
165
- Requires-Dist: openai; extra == "all"
166
- Requires-Dist: distributed; extra == "all"
167
178
  Requires-Dist: filetype; extra == "all"
168
- Requires-Dist: regex; extra == "all"
169
- Requires-Dist: pydevd-pycharm~=251.25410.159; extra == "all"
170
- Requires-Dist: docker; extra == "all"
171
179
  Requires-Dist: tinynetrc; extra == "all"
172
- Requires-Dist: google-api-python-client; extra == "all"
173
- Requires-Dist: peft; extra == "all"
174
- Requires-Dist: transformers[sentencepiece]; extra == "all"
175
- Requires-Dist: flet[all]; extra == "all"
176
- Requires-Dist: html2text; extra == "all"
177
- Requires-Dist: Unidecode; extra == "all"
178
- Requires-Dist: huggingface_hub; extra == "all"
179
- Requires-Dist: sre_yield; extra == "all"
180
- Requires-Dist: dnspython[doh]; extra == "all"
181
- Requires-Dist: pymupdf4llm; extra == "all"
182
- Requires-Dist: tabulate; extra == "all"
183
- Requires-Dist: httpx; extra == "all"
180
+ Requires-Dist: fastapi; extra == "all"
181
+ Requires-Dist: dask[bag]; extra == "all"
182
+ Requires-Dist: pytest-cov; extra == "all"
183
+ Requires-Dist: distributed; extra == "all"
184
184
  Dynamic: author
185
185
  Dynamic: author-email
186
186
  Dynamic: description
@@ -44,16 +44,16 @@ fmtr/tools/tabular_tools.py,sha256=tpIpZzYku1HcJrHZJL6BC39LmN3WUWVhFbK2N7nDVmE,1
44
44
  fmtr/tools/tokenization_tools.py,sha256=me-IBzSLyNYejLybwjO9CNB6Mj2NYfKPaOVThXyaGNg,4268
45
45
  fmtr/tools/tools.py,sha256=CAsApa1YwVdNE6H66Vjivs_mXYvOas3rh7fPELAnTpk,795
46
46
  fmtr/tools/unicode_tools.py,sha256=yS_9wpu8ogNoiIL7s1G_8bETFFO_YQlo4LNPv1NLDeY,52
47
- fmtr/tools/version,sha256=mv8tnhpePoHazD4Fsoh-tA0aqi5t684gOq6SnQNd-oE,6
47
+ fmtr/tools/version,sha256=-HUYHLoxm5NcuTwlcnkIjrMAYrjQl765FWVc5Bp_DI4,6
48
48
  fmtr/tools/yaml_tools.py,sha256=Bhhyd6GQVKO72Lp8ky7bAUjIB_65Hdh0Q45SKIEe6S8,1901
49
49
  fmtr/tools/ai_tools/__init__.py,sha256=JZrLuOFNV1A3wvJgonxOgz_4WS-7MfCuowGWA5uYCjs,372
50
50
  fmtr/tools/ai_tools/agentic_tools.py,sha256=acSEPFS-aguDXanWGs3fAAlRyJSYPZW7L-Kb2qDLm-I,4300
51
51
  fmtr/tools/ai_tools/inference_tools.py,sha256=2UP2gXEyOJUjyyV6zmFIYmIxUsh1rXkRH0IbFvr2bRs,11908
52
52
  fmtr/tools/dns_tools/__init__.py,sha256=PjD3Og6D5yvDVpKmsUsrnSpz_rjXpl4zBtvMqm8xKWU,237
53
53
  fmtr/tools/dns_tools/client.py,sha256=uUFoFRwoPtetPVH6PZ3ssHmx3WEquT6UW4FCBKq4n74,2722
54
- fmtr/tools/dns_tools/dm.py,sha256=_kjsJx9cyEH7qWDjSGj6C54KRvi21h1em5FZCagrFgk,5271
55
- fmtr/tools/dns_tools/proxy.py,sha256=0lgn1pq5KLoGA4644ZXYs2lPjXjRB-ibFb7JHzlMY9o,1618
56
- fmtr/tools/dns_tools/server.py,sha256=zLZIXJil6_FeZjIyBytkpaavkoQGN4e9lEjQdOWnazc,3629
54
+ fmtr/tools/dns_tools/dm.py,sha256=SpnmvK49tozjxv66ihrzes3ZtDD8pW2Km7E-rOx9z_c,6329
55
+ fmtr/tools/dns_tools/proxy.py,sha256=gCWfH1pyWjj8xnJ8Pm4id7bsBWqcar3dQ9PeP5XjRXY,1624
56
+ fmtr/tools/dns_tools/server.py,sha256=7XqG2csuYjXmsEzcHVCd5LBytXkefCPiK3HCRA5v1zQ,4180
57
57
  fmtr/tools/entrypoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  fmtr/tools/entrypoints/cache_hfh.py,sha256=fQNs4J9twQuZH_Yj98-oOvEX7-LrSUP3kO8nzw2HrHs,60
59
59
  fmtr/tools/entrypoints/ep_test.py,sha256=B8HfWISfSgw_xVX475CbJGh_QnpOe9MH65H8qGjTWbY,46
@@ -76,9 +76,9 @@ fmtr/tools/tests/test_path.py,sha256=AkZQa6_8BQ-VaCyL_J-iKmdf2ZaM-xFYR37Kun3k4_g
76
76
  fmtr/tools/tests/test_yaml.py,sha256=jc0TwwKu9eC0LvFGNMERdgBue591xwLxYXFbtsRwXVM,287
77
77
  fmtr/tools/version_tools/__init__.py,sha256=pg4iLtmIr5HtyEW_j0fMFoIdzqi_w9xH8-grQaXLB28,318
78
78
  fmtr/tools/version_tools/version_tools.py,sha256=Hcc6yferZS1hHbugRTdiHhSNmXEEG0hjCiTTXKna-YY,1127
79
- fmtr_tools-1.3.15.dist-info/licenses/LICENSE,sha256=FW9aa6vVN5IjRQWLT43hs4_koYSmpcbIovlKeAJ0_cI,10757
80
- fmtr_tools-1.3.15.dist-info/METADATA,sha256=63hO7H6HYE93QoQ0Osr-VPu6NUnkgdpz21Gt6-ifylM,15938
81
- fmtr_tools-1.3.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
- fmtr_tools-1.3.15.dist-info/entry_points.txt,sha256=h-r__Xh5njtFqreMLg6cGuTFS4Qh-QqJPU1HB-_BS-Q,357
83
- fmtr_tools-1.3.15.dist-info/top_level.txt,sha256=LXem9xCgNOD72tE2gRKESdiQTL902mfFkwWb6-dlwEE,5
84
- fmtr_tools-1.3.15.dist-info/RECORD,,
79
+ fmtr_tools-1.3.17.dist-info/licenses/LICENSE,sha256=FW9aa6vVN5IjRQWLT43hs4_koYSmpcbIovlKeAJ0_cI,10757
80
+ fmtr_tools-1.3.17.dist-info/METADATA,sha256=_WcO0-Lvmq7REkXt0l3vVJzB1mTpZ3vif4cnFzoe-pA,15938
81
+ fmtr_tools-1.3.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
+ fmtr_tools-1.3.17.dist-info/entry_points.txt,sha256=h-r__Xh5njtFqreMLg6cGuTFS4Qh-QqJPU1HB-_BS-Q,357
83
+ fmtr_tools-1.3.17.dist-info/top_level.txt,sha256=LXem9xCgNOD72tE2gRKESdiQTL902mfFkwWb6-dlwEE,5
84
+ fmtr_tools-1.3.17.dist-info/RECORD,,