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>
91 lines
3.4 KiB
Python
91 lines
3.4 KiB
Python
"""Q3/Q4. Two jobs.
|
|
|
|
(1) callers() returned NOTHING for the market request builder FUN_180162c90 and the
|
|
seasons builder FUN_180175bd0. That is the absence trap again: these are almost
|
|
certainly virtual. So search for ABSOLUTE 8-byte pointers to them anywhere in the image
|
|
(vtable membership) as well as rel32 direct calls.
|
|
CONTROL: FUN_18011dc50 is KNOWN (prior run) to have zero rel32 callers and exactly one
|
|
absolute-pointer site at 0x18021cc28 = model vtable +0x988. If my scanner does not
|
|
reproduce that exact result, the scanner is wrong and every other row is void.
|
|
|
|
(2) Enumerate the FUT UI surface names: every "*viewmodel" literal and every
|
|
"data/ui/layout/fut/*" literal, so the transfer-market screen's provider can be named.
|
|
"""
|
|
import struct, re, traceback
|
|
|
|
try:
|
|
blocks = {}
|
|
for b in mem.getBlocks():
|
|
blocks[str(b.getName())] = (int(b.getStart().getOffset()), int(b.getEnd().getOffset()))
|
|
|
|
def blk(name):
|
|
s, e = blocks[name]
|
|
out = b""
|
|
a = s
|
|
while a <= e:
|
|
n = min(1 << 20, e - a + 1)
|
|
out += read_bytes(a, n)
|
|
a += n
|
|
return s, out
|
|
|
|
ts, text = blk(".text")
|
|
rs, rdata = blk(".rdata")
|
|
ds, data = blk(".data")
|
|
print("len text=%d rdata=%d data=%d" % (len(text), len(rdata), len(data)))
|
|
|
|
def abs_ptr_sites(va):
|
|
pat = struct.pack("<Q", va)
|
|
out = []
|
|
for base, buf, nm in ((rs, rdata, ".rdata"), (ds, data, ".data"), (ts, text, ".text")):
|
|
i = buf.find(pat)
|
|
while i != -1:
|
|
out.append((base + i, nm))
|
|
i = buf.find(pat, i + 1)
|
|
return out
|
|
|
|
def rel32_calls(va):
|
|
out = []
|
|
for i in range(0, len(text) - 5):
|
|
if text[i] == 0xE8:
|
|
d = struct.unpack_from("<i", text, i + 1)[0]
|
|
if ts + i + 5 + d == va:
|
|
out.append(ts + i)
|
|
return out
|
|
|
|
TARGETS = [
|
|
("CONTROL applier FUN_18011dc50", 0x18011dc50),
|
|
("market builder FUN_180162c90", 0x180162c90),
|
|
("seasons hist builder FUN_180175bd0", 0x180175bd0),
|
|
]
|
|
MODEL_VT = 0x18021c2a0
|
|
for lbl, va in TARGETS:
|
|
aps = abs_ptr_sites(va)
|
|
rcs = rel32_calls(va)
|
|
print("\n### %s %#x" % (lbl, va))
|
|
print(" rel32 direct callers: %d %s" % (len(rcs), [hex(x) for x in rcs[:10]]))
|
|
print(" absolute-pointer sites: %d" % len(aps))
|
|
for a, nm in aps:
|
|
note = ""
|
|
if MODEL_VT <= a < MODEL_VT + 0xb20:
|
|
note = " == MODEL vtable slot +%#x" % (a - MODEL_VT)
|
|
print(" %#x %s%s" % (a, nm, note))
|
|
|
|
print("\n\n=== UI SURFACE LITERALS ===")
|
|
strre = re.compile(rb"[\x20-\x7e]{5,120}")
|
|
for base, buf, nm in ((rs, rdata, ".rdata"), (ds, data, ".data")):
|
|
for m in strre.finditer(buf):
|
|
s = m.group()
|
|
low = s.lower()
|
|
if (b"viewmodel" in low or b"layout/fut" in low or b"layout\\fut" in low
|
|
or b"transfer" in low or b"market" in low or b"tradepile" in low
|
|
or b"watchlist" in low or b"auction" in low):
|
|
end = m.end()
|
|
if end < len(buf) and buf[end] != 0:
|
|
continue
|
|
va = base + m.start()
|
|
x = xrefs_to(va)
|
|
print("%#x %s xr=%d %s | %s" % (va, nm, len(x),
|
|
",".join(sorted({n for _, _, n, _ in x})[:4]), s.decode("latin1")))
|
|
except Exception:
|
|
traceback.print_exc()
|