Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
b510dc51
Commit
b510dc51
authored
Sep 11, 2020
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix su request auto response
parent
d7f7508f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
69 deletions
+66
-69
SuRequestHandler.kt
...ain/java/com/topjohnwu/magisk/core/su/SuRequestHandler.kt
+7
-9
BiometricEvent.kt
...java/com/topjohnwu/magisk/events/dialog/BiometricEvent.kt
+1
-1
SettingsViewModel.kt
...ava/com/topjohnwu/magisk/ui/settings/SettingsViewModel.kt
+2
-2
SuperuserViewModel.kt
...a/com/topjohnwu/magisk/ui/superuser/SuperuserViewModel.kt
+3
-3
SuRequestActivity.kt
...va/com/topjohnwu/magisk/ui/surequest/SuRequestActivity.kt
+1
-1
SuRequestViewModel.kt
...a/com/topjohnwu/magisk/ui/surequest/SuRequestViewModel.kt
+52
-53
No files found.
app/src/main/java/com/topjohnwu/magisk/core/su/SuRequestHandler.kt
View file @
b510dc51
...
...
@@ -18,17 +18,16 @@ import java.io.*
import
java.util.concurrent.TimeUnit
import
java.util.concurrent.TimeUnit.SECONDS
abstract
class
SuRequestHandler
(
private
val
p
ackageManager
:
PackageManager
,
class
SuRequestHandler
(
private
val
p
m
:
PackageManager
,
private
val
policyDB
:
PolicyDao
)
:
Closeable
{
private
lateinit
var
output
:
DataOutputStream
protected
lateinit
var
policy
:
SuPolicy
lateinit
var
policy
:
SuPolicy
private
set
abstract
fun
onStart
()
// Return true to indicate undetermined policy, require user interaction
suspend
fun
start
(
intent
:
Intent
):
Boolean
{
if
(!
init
(
intent
))
return
false
...
...
@@ -40,15 +39,14 @@ abstract class SuRequestHandler(
when
(
Config
.
suAutoReponse
)
{
Config
.
Value
.
SU_AUTO_DENY
->
{
respond
(
SuPolicy
.
DENY
,
0
)
return
tru
e
return
fals
e
}
Config
.
Value
.
SU_AUTO_ALLOW
->
{
respond
(
SuPolicy
.
ALLOW
,
0
)
return
tru
e
return
fals
e
}
}
onStart
()
return
true
}
...
...
@@ -82,7 +80,7 @@ abstract class SuRequestHandler(
val
map
=
async
{
input
.
readRequest
()
}.
timedAwait
()
?:
throw
SuRequestError
()
uid
=
map
[
"uid"
]
?.
toIntOrNull
()
?:
throw
SuRequestError
()
}
policy
=
uid
.
toPolicy
(
p
ackageManager
)
policy
=
uid
.
toPolicy
(
p
m
)
true
}
catch
(
e
:
Exception
)
{
when
(
e
)
{
...
...
app/src/main/java/com/topjohnwu/magisk/events/dialog/Biometric
Dialog
.kt
→
app/src/main/java/com/topjohnwu/magisk/events/dialog/Biometric
Event
.kt
View file @
b510dc51
...
...
@@ -5,7 +5,7 @@ import com.topjohnwu.magisk.arch.BaseUIActivity
import
com.topjohnwu.magisk.arch.ViewEvent
import
com.topjohnwu.magisk.core.utils.BiometricHelper
class
Biometric
Dialog
(
class
Biometric
Event
(
builder
:
Builder
.()
->
Unit
)
:
ViewEvent
(),
ActivityExecutor
{
...
...
app/src/main/java/com/topjohnwu/magisk/ui/settings/SettingsViewModel.kt
View file @
b510dc51
...
...
@@ -23,7 +23,7 @@ import com.topjohnwu.magisk.core.tasks.PatchAPK
import
com.topjohnwu.magisk.data.database.RepoDao
import
com.topjohnwu.magisk.events.AddHomeIconEvent
import
com.topjohnwu.magisk.events.RecreateEvent
import
com.topjohnwu.magisk.events.dialog.Biometric
Dialog
import
com.topjohnwu.magisk.events.dialog.Biometric
Event
import
com.topjohnwu.magisk.utils.Utils
import
com.topjohnwu.superuser.Shell
import
kotlinx.coroutines.launch
...
...
@@ -125,7 +125,7 @@ class SettingsViewModel(
}
private
fun
authenticate
(
callback
:
()
->
Unit
)
{
Biometric
Dialog
{
Biometric
Event
{
// allow the change on success
onSuccess
{
callback
()
}
}.
publish
()
...
...
app/src/main/java/com/topjohnwu/magisk/ui/superuser/SuperuserViewModel.kt
View file @
b510dc51
...
...
@@ -16,7 +16,7 @@ import com.topjohnwu.magisk.core.utils.BiometricHelper
import
com.topjohnwu.magisk.core.utils.currentLocale
import
com.topjohnwu.magisk.databinding.ComparableRvItem
import
com.topjohnwu.magisk.events.SnackbarEvent
import
com.topjohnwu.magisk.events.dialog.Biometric
Dialog
import
com.topjohnwu.magisk.events.dialog.Biometric
Event
import
com.topjohnwu.magisk.events.dialog.SuperuserRevokeDialog
import
com.topjohnwu.magisk.view.TappableHeadlineItem
import
com.topjohnwu.magisk.view.TextItem
...
...
@@ -86,7 +86,7 @@ class SuperuserViewModel(
}
if
(
BiometricHelper
.
isEnabled
)
{
Biometric
Dialog
{
Biometric
Event
{
onSuccess
{
updateState
()
}
}.
publish
()
}
else
{
...
...
@@ -130,7 +130,7 @@ class SuperuserViewModel(
}
if
(
BiometricHelper
.
isEnabled
)
{
Biometric
Dialog
{
Biometric
Event
{
onSuccess
{
updateState
()
}
}.
publish
()
}
else
{
...
...
app/src/main/java/com/topjohnwu/magisk/ui/surequest/SuRequestActivity.kt
View file @
b510dc51
...
...
@@ -29,7 +29,7 @@ open class SuRequestActivity : BaseUIActivity<SuRequestViewModel, ActivityReques
supportRequestWindowFeature
(
Window
.
FEATURE_NO_TITLE
)
lockOrientation
()
window
.
setFlags
(
WindowManager
.
LayoutParams
.
FLAG_SECURE
,
WindowManager
.
LayoutParams
.
FLAG_SECURE
)
WindowManager
.
LayoutParams
.
FLAG_SECURE
)
super
.
onCreate
(
savedInstanceState
)
fun
showRequest
()
{
...
...
app/src/main/java/com/topjohnwu/magisk/ui/surequest/SuRequestViewModel.kt
View file @
b510dc51
...
...
@@ -13,12 +13,14 @@ import com.topjohnwu.magisk.R
import
com.topjohnwu.magisk.arch.BaseViewModel
import
com.topjohnwu.magisk.core.Config
import
com.topjohnwu.magisk.core.magiskdb.PolicyDao
import
com.topjohnwu.magisk.core.model.su.SuPolicy
import
com.topjohnwu.magisk.core.model.su.SuPolicy.Companion.ALLOW
import
com.topjohnwu.magisk.core.model.su.SuPolicy.Companion.DENY
import
com.topjohnwu.magisk.core.su.SuRequestHandler
import
com.topjohnwu.magisk.core.utils.BiometricHelper
import
com.topjohnwu.magisk.events.DieEvent
import
com.topjohnwu.magisk.events.ShowUIEvent
import
com.topjohnwu.magisk.events.dialog.BiometricEvent
import
com.topjohnwu.magisk.ui.superuser.SpinnerRvItem
import
com.topjohnwu.magisk.utils.set
import
kotlinx.coroutines.launch
...
...
@@ -28,7 +30,7 @@ import java.util.concurrent.TimeUnit.SECONDS
class
SuRequestViewModel
(
private
val
pm
:
PackageManager
,
p
rivate
val
p
olicyDB
:
PolicyDao
,
policyDB
:
PolicyDao
,
private
val
timeoutPrefs
:
SharedPreferences
,
private
val
res
:
Resources
)
:
BaseViewModel
()
{
...
...
@@ -57,89 +59,86 @@ class SuRequestViewModel(
setItems
(
items
)
}
private
val
handler
=
Handler
()
private
val
handler
=
SuRequestHandler
(
pm
,
policyDB
)
private
lateinit
var
timer
:
CountDownTimer
fun
grantPressed
()
{
handler
.
cancelTimer
()
cancelTimer
()
if
(
BiometricHelper
.
isEnabled
)
{
withView
{
BiometricHelper
.
authenticate
(
this
)
{
handler
.
respond
(
ALLOW
)
BiometricEvent
{
onSuccess
{
respond
(
ALLOW
)
}
}
}
.
publish
()
}
else
{
handler
.
respond
(
ALLOW
)
respond
(
ALLOW
)
}
}
fun
denyPressed
()
{
handler
.
respond
(
DENY
)
respond
(
DENY
)
}
fun
spinnerTouched
():
Boolean
{
handler
.
cancelTimer
()
cancelTimer
()
return
false
}
fun
handleRequest
(
intent
:
Intent
)
{
viewModelScope
.
launch
{
if
(!
handler
.
start
(
intent
))
if
(
handler
.
start
(
intent
))
showDialog
(
handler
.
policy
)
else
DieEvent
().
publish
()
}
}
private
inner
class
Handler
:
SuRequestHandler
(
pm
,
policyDB
)
{
private
lateinit
var
timer
:
CountDownTimer
fun
respond
(
action
:
Int
)
{
timer
.
cancel
()
private
fun
showDialog
(
policy
:
SuPolicy
)
{
icon
=
policy
.
applicationInfo
.
loadIcon
(
pm
)
title
=
policy
.
appName
packageName
=
policy
.
packageName
selectedItemPosition
=
timeoutPrefs
.
getInt
(
policy
.
packageName
,
0
)
val
pos
=
selectedItemPosition
timeoutPrefs
.
edit
().
putInt
(
policy
.
packageName
,
pos
).
apply
()
respond
(
action
,
Config
.
Value
.
TIMEOUT_LIST
[
pos
])
// Kill activity after response
DieEvent
().
publish
()
}
// Set timer
val
millis
=
SECONDS
.
toMillis
(
Config
.
suDefaultTimeout
.
toLong
())
timer
=
SuTimer
(
millis
,
1000
).
apply
{
start
()
}
fun
cancelTimer
()
{
timer
.
cancel
()
denyText
=
res
.
getString
(
R
.
string
.
deny
)
}
// Actually show the UI
ShowUIEvent
().
publish
()
}
override
fun
onStart
()
{
icon
=
policy
.
applicationInfo
.
loadIcon
(
pm
)
title
=
policy
.
appName
packageName
=
policy
.
packageName
selectedItemPosition
=
timeoutPrefs
.
getInt
(
policy
.
packageName
,
0
)
private
fun
respond
(
action
:
Int
)
{
timer
.
cancel
()
// Set timer
val
millis
=
SECONDS
.
toMillis
(
Config
.
suDefaultTimeout
.
toLong
()
)
timer
=
SuTimer
(
millis
,
1000
).
apply
{
start
()
}
val
pos
=
selectedItemPosition
timeoutPrefs
.
edit
().
putInt
(
handler
.
policy
.
packageName
,
pos
).
apply
(
)
handler
.
respond
(
action
,
Config
.
Value
.
TIMEOUT_LIST
[
pos
])
// Actually show the UI
ShowUI
Event
().
publish
()
}
// Kill activity after response
Die
Event
().
publish
()
}
private
inner
class
SuTimer
(
private
val
millis
:
Long
,
interval
:
Long
)
:
CountDownTimer
(
millis
,
interval
)
{
private
fun
cancelTimer
()
{
timer
.
cancel
()
denyText
=
res
.
getString
(
R
.
string
.
deny
)
}
override
fun
onTick
(
remains
:
Long
)
{
if
(!
grantEnabled
&&
remains
<=
millis
-
1000
)
{
grantEnabled
=
true
}
denyText
=
"${res.getString(R.string.deny)} (${(remains / 1000) + 1})"
}
private
inner
class
SuTimer
(
private
val
millis
:
Long
,
interval
:
Long
)
:
CountDownTimer
(
millis
,
interval
)
{
override
fun
onFinish
(
)
{
denyText
=
res
.
getString
(
R
.
string
.
deny
)
respond
(
DENY
)
override
fun
onTick
(
remains
:
Long
)
{
if
(!
grantEnabled
&&
remains
<=
millis
-
1000
)
{
grantEnabled
=
true
}
denyText
=
"${res.getString(R.string.deny)} (${(remains / 1000) + 1})"
}
override
fun
onFinish
()
{
denyText
=
res
.
getString
(
R
.
string
.
deny
)
respond
(
DENY
)
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment