Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
3edafc68
There was an error fetching the commit references. Please try again later.
Commit
3edafc68
authored
6 years ago
by
Zach Hilman
Browse files
Options
Downloads
Patches
Plain Diff
qt: Add key derivation progress bar on initial setup
parent
29dc6f45
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/yuzu/main.cpp
+52
-0
52 additions, 0 deletions
src/yuzu/main.cpp
with
52 additions
and
0 deletions
src/yuzu/main.cpp
+
52
−
0
View file @
3edafc68
...
...
@@ -31,6 +31,7 @@ static FileSys::VirtualFile VfsDirectoryCreateFileWrapper(const FileSys::Virtual
#include
<QDialogButtonBox>
#include
<QFileDialog>
#include
<QMessageBox>
#include
<QtConcurrent/QtConcurrent>
#include
<QtGui>
#include
<QtWidgets>
#include
<fmt/format.h>
...
...
@@ -171,6 +172,57 @@ GMainWindow::GMainWindow()
.
arg
(
Common
::
g_build_fullname
,
Common
::
g_scm_branch
,
Common
::
g_scm_desc
));
show
();
// Gen keys if necessary
Core
::
Crypto
::
KeyManager
keys
{};
if
(
keys
.
BaseDeriveNecessary
())
{
Core
::
Crypto
::
PartitionDataManager
pdm
{
vfs
->
OpenDirectory
(
FileUtil
::
GetUserPath
(
FileUtil
::
UserPath
::
SysDataDir
),
FileSys
::
Mode
::
Read
)};
const
auto
function
=
[
this
,
&
keys
,
&
pdm
]()
{
keys
.
PopulateFromPartitionData
(
pdm
);
Service
::
FileSystem
::
CreateFactories
(
vfs
);
keys
.
DeriveETicket
(
pdm
);
};
std
::
vector
<
std
::
string
>
errors
;
if
(
!
pdm
.
HasFuses
())
errors
.
push_back
(
"Missing fuses - Cannot derive SBK"
);
if
(
!
pdm
.
HasBoot0
())
errors
.
push_back
(
"Missing BOOT0 - Cannot derive master keys"
);
if
(
!
pdm
.
HasPackage2
())
errors
.
push_back
(
"Missing BCPKG2-1-Normal-Main - Cannot derive general keys"
);
if
(
!
pdm
.
HasProdInfo
())
errors
.
push_back
(
"Missing PRODINFO - Cannot derive title keys"
);
if
(
!
errors
.
empty
())
{
std
::
string
error_str
;
for
(
const
auto
&
error
:
errors
)
error_str
+=
" - "
+
error
+
"
\n
"
;
QMessageBox
::
warning
(
this
,
tr
(
"Warning Missing Derivation Components"
),
tr
(
"The following are missing from your configuration that may hinder key "
"derivation. It will be attempted but may not complete.
\n\n
"
)
+
QString
::
fromStdString
(
error_str
));
}
QProgressDialog
prog
;
prog
.
setRange
(
0
,
0
);
prog
.
setLabelText
(
tr
(
"Deriving keys...
\n
This may take up to a minute depending
\n
on your "
"system's performance."
));
prog
.
setWindowTitle
(
tr
(
"Deriving Keys"
));
prog
.
show
();
auto
future
=
QtConcurrent
::
run
(
function
);
while
(
!
future
.
isFinished
())
{
QCoreApplication
::
processEvents
();
}
prog
.
close
();
}
// Necessary to load titles from nand in gamelist.
Service
::
FileSystem
::
CreateFactories
(
vfs
);
game_list
->
LoadCompatibilityList
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment