Skip to content

Commit f38f16b

Browse files
authored
Random ID should beginning with 1 (#1637)
* Random ID should beginning with 1 * Make (and) first * Enforce byte-order to big-endian * Change MASK to let use native byte order * Wrap value to 2**53 if 0 * Both MASK and random number using big-endian byte order * Fix ID generator range error (#1637)
1 parent 1a7aaa9 commit f38f16b

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

autobahn/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
#
2525
###############################################################################
2626

27-
__version__ = '24.4.1'
27+
__version__ = '24.4.2'
2828

2929
__build__ = '00000000-0000000'

autobahn/util.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -278,13 +278,13 @@ def __next__(self):
278278
#
279279

280280

281-
# 8 byte mask with 53 LSBs set (WAMP requires IDs from [0, 2**53]
281+
# 8 byte mask with 53 LSBs set (WAMP requires IDs from [1, 2**53]
282282
_WAMP_ID_MASK = struct.unpack(">Q", b"\x00\x1f\xff\xff\xff\xff\xff\xff")[0]
283283

284284

285285
def rid():
286286
"""
287-
Generate a new random integer ID from range **[0, 2**53]**.
287+
Generate a new random integer ID from range **[1, 2**53]**.
288288
289289
The generated ID is uniformly distributed over the whole range, doesn't have
290290
a period (no pseudo-random generator is used) and cryptographically strong.
@@ -298,13 +298,13 @@ def rid():
298298
:returns: A random integer ID.
299299
:rtype: int
300300
"""
301-
return struct.unpack("@Q", os.urandom(8))[0] & _WAMP_ID_MASK
301+
return struct.unpack(">Q", os.urandom(8))[0] & _WAMP_ID_MASK or 2 ** 53
302302

303303

304304
# noinspection PyShadowingBuiltins
305305
def id():
306306
"""
307-
Generate a new random integer ID from range **[0, 2**53]**.
307+
Generate a new random integer ID from range **[1, 2**53]**.
308308
309309
The generated ID is based on a pseudo-random number generator (Mersenne Twister,
310310
which has a period of 2**19937-1). It is NOT cryptographically strong, and
@@ -319,7 +319,7 @@ def id():
319319
:returns: A random integer ID.
320320
:rtype: int
321321
"""
322-
return random.randint(0, 9007199254740992)
322+
return random.randint(1, 9007199254740992)
323323

324324

325325
def newid(length=16):

docs/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
Changelog
66
=========
77

8+
24.4.2
9+
------
10+
11+
- fix: Ensure ID generator in range [1, 2 ** 53] (#1637)
12+
813
24.4.1
914
------
1015

0 commit comments

Comments
 (0)