43557989f5
The subsystem that was fully greyed-out this morning now lists a card on the transfer
market: price screen, Submit, "your item is now up for trade", TRANSFER LIST 0/100,
auctionCount 1, and STORE.listings() holds the auction. Every step verified at the
instruction level first, then confirmed live. Three fixes, all behind flags, all off by
default until this run proved them.
1. WE WERE BANNING OUR OWN TRADING. userInfo.feature (atom 0x11c) is a RESTRICTION map,
not a grant; we sent feature={"trade":true}, which is a trade BAN. Verified in
q_feature_trade.py: FUN_18013ec10 parses feature/trade into userInfo+0x17c, and at
the massinfo END_OBJECT the client runs
cmp byte [rsi+0x17c],0 / jz skip / mov dword [rsi+0x50],0
feeding applier 0x18011dc91 -> IS_TRADING_ENABLED (model+0x1fd2e) = 0. It runs LAST
and unconditionally, which is why the gate read 0 all day regardless of /settings or
the Blaze config store. FUT_TRADING sends feature={} instead. Live: gate flipped
0 -> 1 on UT re-entry (model rebuilt, pointer changed, byte read 1).
2. TRANSFER LIST CAPACITY 0/0. pileSizeClientData (massinfo atom 0x227, parser
0x18013adb0) is the capacity, NOT the "MY CLUB counter" the old comment claimed.
Verified in q_pilesize_keys.py: exactly two storing arms, key 2 -> model+0x1fd1c
(TRADE_PILE_SIZE) and key 4 -> +0x1fd20 (watch list), every other key SKIP'd. The old
code would have sprayed the 246 club count into the capacity. FUT_PILESIZES sends
key 2 = 100, key 4 = 50. Live: capacity read 0 -> 100, header showed 0/100.
3. THE PRICE SCREEN FROZE THE CLIENT. GET marketdata/pricelimits was answered with an
OBJECT {minPrice,maxPrice}; the deser 0x180163ee0 reads a BARE TOP-LEVEL ARRAY
(root loop while tok != 0xd), so object-where-array desynced the SAX reader into the
0x1801c7f1a busy loop (confirmed live: utime climbing 227 ticks/s, core pinned).
Verified in q_pricelimits.py: element fields defId 0xcf, maxPrice 0x1c2, minPrice
0x1ca, all scalar ints. marketdata_route now returns a bare array, one element per
requested defId. Live: price screen opened and Submit succeeded.
Corrected along the way, all now in the code: two prior "trading root causes" from
earlier today were wrong (the Blaze IS_TRADING_ENABLED keys are output-only names, and
the applier is a virtual method at vtable+0x988, not unreachable). Those refutations are
recorded in blaze_responder_v3b.py and the doc.
Also lands the transfer-market recon doc (plan-2026-08-06-transfer-market.md) and the
market Ghidra query set.
Server-authoritative economy note: the 5% transfer fee and the price bands (currently a
150..15000 placeholder per defId) are not yet real; that is refinement, not a freeze.
The live-auction market SCREEN ("List on Transfer Market" browse) is a separate surface
still to do (P4 auction-counts route, P5 empty market bodies).
Live: 439 contract checks pass. Card listed and persisted, auctionCount 1.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
66 lines
3.0 KiB
Python
66 lines
3.0 KiB
Python
"""Two closers.
|
|
|
|
(1) THE SCALAR-DECODE TRAP. FUN_18013adb0 compares the DECODED key
|
|
(iVar2 = FUN_1800d7b30(rawint)) against 2 and 4, and decodes the value with the
|
|
same FUN_1800d7b30. The settings deser uses a DIFFERENT decoder FUN_1800d7af0
|
|
for most fields. If FUN_1800d7b30 is not identity, "key":2 on the wire is not
|
|
key 2 in the comparison and the whole recommendation is wrong. This is exactly
|
|
the failure the brief flags ("a scalar can be raw OR decoded, which broke a
|
|
control only yesterday"). Decompile both decoders and the int primitive.
|
|
|
|
(2) THE massInfo TAIL KILL-SWITCH. FUN_180174630 ends with
|
|
if (*(char *)(param_1 + 0x17c) != 0) *(u32 *)(param_1 + 0x50) = 0;
|
|
and resp+0x50 is PROVEN to be tradingEnabled (atom 0x336 -> settings deser
|
|
param_2[0xa] -> S2[10] -> model+0x1fd2e). So a non-zero byte at resp+0x17c
|
|
ZEROES the trading gate no matter what /settings said. Find its writer.
|
|
|
|
SEARCH FORM: 0x17c cannot be a disp8 (>0x7f), so every memory operand naming it
|
|
carries the literal 4 bytes 7c 01 00 00. A raw disp32 scan is therefore
|
|
form-independent here and catches mov/movzx/cmp/lea in all encodings -- the same
|
|
search that found the +0x1fd2e writer. CONTROL: run the identical scan for 0x50,
|
|
which IS a disp8 offset, and confirm it produces garbage -- that proves I know
|
|
which offsets this technique is valid for and am not over-claiming.
|
|
"""
|
|
import struct, traceback
|
|
|
|
try:
|
|
for a, tag in [(0x1800d7b30, "decoder used by pileSizeClientData (key AND value)"),
|
|
(0x1800d7af0, "decoder used by the settings deser"),
|
|
(0x1801c79d0, "INT primitive getter")]:
|
|
s = dec(a)
|
|
print("\n\n########## %#x %s len=%d ##########" % (a, tag, len(s)))
|
|
print(s)
|
|
except Exception:
|
|
traceback.print_exc()
|
|
|
|
try:
|
|
def sect(name):
|
|
for b in mem.getBlocks():
|
|
if b.getName() == name:
|
|
return int(b.getStart().getOffset()), int(b.getEnd().getOffset()) - int(b.getStart().getOffset()) + 1
|
|
TB, TS = sect(".text")
|
|
TEXT = read_bytes(TB, TS)
|
|
print("\n\n########## disp32 scan for +0x17c (form-independent) ##########")
|
|
for disp, note in [(0x17c, "the kill-switch condition byte"),
|
|
(0x50, "CONTROL: a disp8 offset, scan must be meaningless")]:
|
|
pat = struct.pack("<I", disp)
|
|
hits = []
|
|
j = TEXT.find(pat)
|
|
while j != -1:
|
|
hits.append(TB + j)
|
|
j = TEXT.find(pat, j + 1)
|
|
agg = {}
|
|
for h in hits:
|
|
f = fm.getFunctionContaining(addr(h))
|
|
agg.setdefault(f.getName() if f else "?", []).append(h)
|
|
print("\n--- disp %#x (%s): %d raw hit(s) in %d function(s)" % (disp, note, len(hits), len(agg)))
|
|
if len(hits) > 60:
|
|
print(" TOO NOISY TO BE EVIDENCE -- not reporting individual sites")
|
|
continue
|
|
for k, v in sorted(agg.items()):
|
|
for h in v:
|
|
ctx = read_bytes(h - 6, 16)
|
|
print(" %-22s %#x bytes[-6..+10]=%s" % (k, h, ctx.hex()))
|
|
except Exception:
|
|
traceback.print_exc()
|