1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: 2026 Project Tick
// SPDX-FileContributor: Project Tick Team
/*
* ProjT Launcher - Minecraft Launcher
* Copyright (C) 2026 Project Tick
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "XboxSecurityTokenStep.hpp"
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonParseError>
#include <QNetworkRequest>
#include "Application.h"
#include "minecraft/Logging.h"
#include "net/NetUtils.h"
#include "net/RawHeaderProxy.h"
namespace projt::minecraft::auth
{
namespace
{
constexpr auto kXstsAuthorizeUrl = "https://xsts.auth.xboxlive.com/xsts/authorize";
/**
* Parse Xbox token response.
*/
[[nodiscard]] bool parseXboxTokenResponse(const QByteArray& data, AuthToken& token)
{
QJsonParseError err;
const auto doc = QJsonDocument::fromJson(data, &err);
if (err.error != QJsonParseError::NoError || !doc.isObject())
{
qWarning() << "Failed to parse XSTS response:" << err.errorString();
return false;
}
const auto obj = doc.object();
token.issuedAt = QDateTime::fromString(obj.value(QStringLiteral("IssueInstant")).toString(), Qt::ISODate);
token.expiresAt = QDateTime::fromString(obj.value(QStringLiteral("NotAfter")).toString(), Qt::ISODate);
token.accessToken = obj.value(QStringLiteral("Token")).toString();
const auto displayClaims = obj.value(QStringLiteral("DisplayClaims")).toObject();
const auto xui = displayClaims.value(QStringLiteral("xui")).toArray();
if (!xui.isEmpty())
{
const auto firstClaim = xui.first().toObject();
token.metadata.insert(QStringLiteral("uhs"), firstClaim.value(QStringLiteral("uhs")).toString());
}
token.validity = TokenValidity::Certain;
return !token.accessToken.isEmpty();
}
/**
* XSTS error code messages.
* See: https://wiki.vg/Microsoft_Authentication_Scheme#Authenticate_with_XSTS
*/
struct XstsErrorInfo
{
int64_t code;
const char* message;
};
constexpr std::array kXstsErrors = {
XstsErrorInfo{ 2148916227, "This Microsoft account was banned by Xbox." },
XstsErrorInfo{ 2148916229, "This account is restricted. Please check parental controls." },
XstsErrorInfo{ 2148916233, "This account does not have an Xbox Live profile. Purchase the game first." },
XstsErrorInfo{ 2148916234, "Please accept Xbox Terms of Service and try again." },
XstsErrorInfo{ 2148916235, "Xbox Live is not available in your region." },
XstsErrorInfo{ 2148916236, "This account requires age verification." },
XstsErrorInfo{ 2148916237, "This account has reached its playtime limit." },
XstsErrorInfo{ 2148916238, "This account is underaged and not linked to a family." }
};
} // namespace
XboxSecurityTokenStep::XboxSecurityTokenStep(Credentials& credentials, XstsTarget target) noexcept
: Step(credentials),
m_target(target)
{}
QString XboxSecurityTokenStep::description() const
{
return tr("Getting authorization for %1 services.").arg(targetName());
}
QString XboxSecurityTokenStep::relyingParty() const
{
switch (m_target)
{
case XstsTarget::XboxLive: return QStringLiteral("http://xboxlive.com");
case XstsTarget::MinecraftServices: return QStringLiteral("rp://api.minecraftservices.com/");
}
Q_UNREACHABLE();
}
QString XboxSecurityTokenStep::targetName() const
{
switch (m_target)
{
case XstsTarget::XboxLive: return QStringLiteral("Xbox Live");
case XstsTarget::MinecraftServices: return QStringLiteral("Minecraft");
}
Q_UNREACHABLE();
}
AuthToken& XboxSecurityTokenStep::targetToken()
{
switch (m_target)
{
case XstsTarget::XboxLive: return m_credentials.xboxServiceToken;
case XstsTarget::MinecraftServices: return m_credentials.minecraftServicesToken;
}
Q_UNREACHABLE();
}
void XboxSecurityTokenStep::execute()
{
const QString requestBody = QStringLiteral(R"({
"Properties": {
"SandboxId": "RETAIL",
"UserTokens": ["%1"]
},
"RelyingParty": "%2",
"TokenType": "JWT"
})")
.arg(m_credentials.xboxUserToken.accessToken, relyingParty());
const QUrl url(QString::fromLatin1(kXstsAuthorizeUrl));
const auto headers =
QList<Net::HeaderPair>{ { "Content-Type", "application/json" }, { "Accept", "application/json" } };
m_response = std::make_shared<QByteArray>();
m_request = Net::Upload::makeByteArray(url, m_response, requestBody.toUtf8());
m_request->addHeaderProxy(new Net::RawHeaderProxy(headers));
m_task = NetJob::Ptr::create(QStringLiteral("XstsAuthorize"), APPLICATION->network());
m_task->setAskRetry(false);
m_task->addNetAction(m_request);
connect(m_task.get(), &Task::finished, this, &XboxSecurityTokenStep::onRequestCompleted);
m_task->start();
qDebug() << "Getting XSTS token for" << relyingParty();
}
void XboxSecurityTokenStep::onRequestCompleted()
{
qCDebug(authCredentials()) << *m_response;
if (m_request->error() != QNetworkReply::NoError)
{
qWarning() << "XSTS request error:" << m_request->error();
if (Net::isApplicationError(m_request->error()))
{
if (handleStsError())
{
return;
}
emit completed(StepResult::SoftFailure,
tr("Failed to get %1 authorization: %2").arg(targetName(), m_request->errorString()));
}
else
{
emit completed(StepResult::Offline,
tr("Failed to get %1 authorization: %2").arg(targetName(), m_request->errorString()));
}
return;
}
AuthToken token;
if (!parseXboxTokenResponse(*m_response, token))
{
emit completed(StepResult::SoftFailure, tr("Could not parse %1 authorization response.").arg(targetName()));
return;
}
// Verify user hash matches
const QString responseUhs = token.metadata.value(QStringLiteral("uhs")).toString();
if (responseUhs != m_credentials.xboxUserHash())
{
emit completed(StepResult::SoftFailure, tr("User hash mismatch in %1 authorization.").arg(targetName()));
return;
}
targetToken() = token;
emit completed(StepResult::Continue, tr("Got %1 authorization.").arg(targetName()));
}
bool XboxSecurityTokenStep::handleStsError()
{
if (m_request->error() != QNetworkReply::AuthenticationRequiredError)
{
return false;
}
QJsonParseError jsonError;
const auto doc = QJsonDocument::fromJson(*m_response, &jsonError);
if (jsonError.error != QJsonParseError::NoError)
{
emit completed(StepResult::SoftFailure,
tr("Cannot parse XSTS error response: %1").arg(jsonError.errorString()));
return true;
}
const auto obj = doc.object();
const auto errorCode = static_cast<int64_t>(obj.value(QStringLiteral("XErr")).toDouble());
if (errorCode == 0)
{
emit completed(StepResult::SoftFailure, tr("XSTS error response missing error code."));
return true;
}
// Look up error message
for (const auto& [code, message] : kXstsErrors)
{
if (code == errorCode)
{
emit completed(StepResult::SoftFailure, tr(message));
return true;
}
}
emit completed(StepResult::SoftFailure, tr("Unknown XSTS error: %1").arg(errorCode));
return true;
}
} // namespace projt::minecraft::auth
|