aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Newsome <jnewsome@torproject.org>2024-03-27 14:30:29 -0500
committerJim Newsome <jnewsome@torproject.org>2024-03-27 14:30:29 -0500
commit04d4f87b7705b50c6b1c7d658b4cbf048276ef05 (patch)
treea19e58ff64b71d51f07ba226b661a7bed58bf6a5
parent063f3836effae5a4aa33b683d0386b1ca0b78f4d (diff)
downloadtorspec-04d4f87b7705b50c6b1c7d658b4cbf048276ef05.tar.gz
torspec-04d4f87b7705b50c6b1c7d658b4cbf048276ef05.zip
prop340: Expand on why we don't allow DATA fragmentation
I was going to propose allowing DATA fragmentation, but I think I've talked myself out of it. I think it'll be useful to have a record of this line of thought for future reference.
-rw-r--r--proposals/340-packed-and-fragmented.md19
1 files changed, 17 insertions, 2 deletions
diff --git a/proposals/340-packed-and-fragmented.md b/proposals/340-packed-and-fragmented.md
index 2407f99..8586349 100644
--- a/proposals/340-packed-and-fragmented.md
+++ b/proposals/340-packed-and-fragmented.md
@@ -269,8 +269,23 @@ conflux bundle.
### An exception for `DATA`.
-Data messages may not be fragmented. (There is never a reason to do
-this.)
+Data messages may not be fragmented. When packing data into a cell containing
+other messages is desired, the application can instead construct a DATA message
+of an appropriate size to fit into the remaining space.
+
+While relaxing this could simplify the implementation of opportunistic packing
+somewhat (by allowing code that constructs `DATA` messages not to have to know
+about packing or fragmentation), doing so would have several downsides.
+
+First, on the receiver side a naive implementation that receives the first cell
+of a fragmented `DATA` message would not be able to pass the data in that
+fragment on to the application until the remaining cells of that message are
+received. An optimized implementation might choose to do so, but that
+complexity seems worse than the complexity we'd be avoiding by allowing `DATA`
+fragmentation in the first place.
+
+Second, as with any sort of flexibility permitted to implementations, allowing
+flexibility here adds opportunities for fingerprinting and covert channels.
### Extending message-length maxima