mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 08:36:00 +01:00
[MIRROR] [s] Fixed admins being able to bypass proccall protections via remote sdql and circuits. (#8321)
* [s] Fixed admins being able to bypass proccall protections via remote sdql and circuits. (#61482) About The Pull Request Admins can bypass IsAdminAdvancedProcCall checks by using these methods of proccall because proccall protection is kinda dumb. This has been tweaked so that there is proper proccall protection for these methods of proccall. Code is hacky, but there's not much of a choice if we want procs to be properly protected from admin proccalls from any sort of remote source. If anyone has a better idea on how to implement this, feel free to hit me up. We need a special global mob that handles proccalls from sources that may not have a usr/client to refer back to. IsAdminAdvancedProcCall() relies usr being defined, so if no usr is defined, then this will always return false. This has been adjusted so that proccalls without a usr/client to refer back to will instead set usr to this special mob, which will then let the IsAdminAdvancedProcCall() return true by comparing whether usr == this special global mob. Why It's Good For The Game Admins can no longer bypass IsAdminAdvancedProcCall checks. Changelog cl admin: Admins are no longer able to bypass proccall protections using remote methods of proccalling. /cl * [s] Fixed admins being able to bypass proccall protections via remote sdql and circuits. Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
This commit is contained in:
@@ -1,3 +1,98 @@
|
||||
|
||||
GLOBAL_DATUM_INIT(AdminProcCallHandler, /mob/proccall_handler, new())
|
||||
GLOBAL_PROTECT(AdminProcCallHandler)
|
||||
|
||||
/// Used to handle proccalls called indirectly by an admin (e.g. tgs, circuits).
|
||||
/// Has to be a mob because IsAdminAdvancedProcCall() checks usr, which is a mob variable.
|
||||
/// So usr is set to this for any proccalls that don't have any usr mob/client to refer to.
|
||||
/mob/proccall_handler
|
||||
name = "ProcCall Handler"
|
||||
desc = "If you are seeing this, tell a coder."
|
||||
|
||||
var/list/callers = list()
|
||||
|
||||
invisibility = INVISIBILITY_ABSTRACT
|
||||
density = FALSE
|
||||
|
||||
/// Adds a caller.
|
||||
/mob/proccall_handler/proc/add_caller(caller_name)
|
||||
callers += caller_name
|
||||
name = "[initial(name)] ([callers.Join(") (")])"
|
||||
|
||||
/// Removes a caller.
|
||||
/mob/proccall_handler/proc/remove_caller(caller_name)
|
||||
callers -= caller_name
|
||||
name = "[initial(name)] ([callers.Join(") (")])"
|
||||
|
||||
/mob/proccall_handler/Initialize(mapload)
|
||||
. = ..()
|
||||
if(GLOB.AdminProcCallHandler)
|
||||
return INITIALIZE_HINT_QDEL
|
||||
|
||||
/mob/proccall_handler/vv_edit_var(var_name, var_value)
|
||||
if(GLOB.AdminProcCallHandler != src)
|
||||
return ..()
|
||||
return FALSE
|
||||
|
||||
/mob/proccall_handler/vv_do_topic(list/href_list)
|
||||
if(GLOB.AdminProcCallHandler != src)
|
||||
return ..()
|
||||
return FALSE
|
||||
|
||||
/mob/proccall_handler/CanProcCall(procname)
|
||||
if(GLOB.AdminProcCallHandler != src)
|
||||
return ..()
|
||||
return FALSE
|
||||
|
||||
// Shit will break if this is allowed to be deleted
|
||||
/mob/proccall_handler/Destroy(force)
|
||||
if(GLOB.AdminProcCallHandler != src)
|
||||
return ..()
|
||||
if(!force)
|
||||
#ifndef UNIT_TESTS
|
||||
stack_trace("Attempted deletion on [type] - [name], aborting.")
|
||||
#endif
|
||||
return QDEL_HINT_LETMELIVE
|
||||
return ..()
|
||||
|
||||
/**
|
||||
* Handles a userless proccall, used by circuits.
|
||||
*
|
||||
* Arguments:
|
||||
* * user - a string used to identify the user
|
||||
* * target - the target to proccall on
|
||||
* * proc - the proc to call
|
||||
* * arguments - any arguments
|
||||
*/
|
||||
/proc/HandleUserlessProcCall(user, datum/target, procname, list/arguments)
|
||||
if(IsAdminAdvancedProcCall())
|
||||
return
|
||||
var/mob/proccall_handler/handler = GLOB.AdminProcCallHandler
|
||||
handler.add_caller(user)
|
||||
var/lastusr = usr
|
||||
usr = handler
|
||||
. = WrapAdminProcCall(target, procname, arguments)
|
||||
usr = lastusr
|
||||
handler.remove_caller(user)
|
||||
|
||||
/**
|
||||
* Handles a userless sdql, used by circuits and tgs.
|
||||
*
|
||||
* Arguments:
|
||||
* * user - a string used to identify the user
|
||||
* * query_text - the query text
|
||||
*/
|
||||
/proc/HandleUserlessSDQL(user, query_text)
|
||||
if(IsAdminAdvancedProcCall())
|
||||
return
|
||||
var/mob/proccall_handler/handler = GLOB.AdminProcCallHandler
|
||||
handler.add_caller(user)
|
||||
var/lastusr = usr
|
||||
usr = handler
|
||||
. = world.SDQL2_query(query_text, user, user)
|
||||
usr = lastusr
|
||||
handler.remove_caller(user)
|
||||
|
||||
/client/proc/callproc()
|
||||
set category = "Debug"
|
||||
set name = "Advanced ProcCall"
|
||||
@@ -94,22 +189,30 @@ GLOBAL_PROTECT(LastAdminCalledProc)
|
||||
to_chat(usr, "Proccall on [target.type]/proc/[procname] is disallowed!", confidential = TRUE)
|
||||
return
|
||||
var/current_caller = GLOB.AdminProcCaller
|
||||
var/ckey = usr ? usr.client.ckey : GLOB.AdminProcCaller
|
||||
if(!ckey)
|
||||
var/user_identifier = usr ? usr.client?.ckey : GLOB.AdminProcCaller
|
||||
var/is_remote_handler = usr == GLOB.AdminProcCallHandler
|
||||
if(is_remote_handler)
|
||||
user_identifier = GLOB.AdminProcCallHandler.name
|
||||
|
||||
if(!user_identifier)
|
||||
CRASH("WrapAdminProcCall with no ckey: [target] [procname] [english_list(arguments)]")
|
||||
|
||||
if(current_caller && current_caller != ckey)
|
||||
if(!is_remote_handler && current_caller && current_caller != user_identifier)
|
||||
to_chat(usr, span_adminnotice("Another set of admin called procs are still running. Try again later."), confidential = TRUE)
|
||||
return
|
||||
|
||||
GLOB.LastAdminCalledProc = procname
|
||||
if(target != GLOBAL_PROC)
|
||||
GLOB.LastAdminCalledTargetRef = REF(target)
|
||||
GLOB.AdminProcCaller = ckey //if this runtimes, too bad for you
|
||||
++GLOB.AdminProcCallCount
|
||||
. = world.WrapAdminProcCall(target, procname, arguments)
|
||||
if(--GLOB.AdminProcCallCount == 0)
|
||||
GLOB.AdminProcCaller = null
|
||||
|
||||
if(!is_remote_handler)
|
||||
GLOB.AdminProcCaller = user_identifier //if this runtimes, too bad for you
|
||||
++GLOB.AdminProcCallCount
|
||||
. = world.WrapAdminProcCall(target, procname, arguments)
|
||||
if(--GLOB.AdminProcCallCount == 0)
|
||||
GLOB.AdminProcCaller = null
|
||||
else
|
||||
. = world.WrapAdminProcCall(target, procname, arguments)
|
||||
|
||||
//adv proc call this, ya nerds
|
||||
/world/proc/WrapAdminProcCall(datum/target, procname, list/arguments)
|
||||
@@ -124,7 +227,7 @@ GLOBAL_PROTECT(LastAdminCalledProc)
|
||||
#ifdef TESTING
|
||||
return FALSE
|
||||
#else
|
||||
return usr && usr.client && GLOB.AdminProcCaller == usr.client.ckey
|
||||
return (GLOB.AdminProcCaller && GLOB.AdminProcCaller == usr?.client?.ckey) || (GLOB.AdminProcCallHandler && usr == GLOB.AdminProcCallHandler)
|
||||
#endif
|
||||
|
||||
/client/proc/callproc_datum(datum/A as null|area|mob|obj|turf)
|
||||
|
||||
@@ -81,11 +81,7 @@ GLOBAL_LIST(round_end_notifiees)
|
||||
admin_only = TRUE
|
||||
|
||||
/datum/tgs_chat_command/sdql/Run(datum/tgs_chat_user/sender, params)
|
||||
if(GLOB.AdminProcCaller)
|
||||
return "Unable to run query, another admin proc call is in progress. Try again later."
|
||||
GLOB.AdminProcCaller = "CHAT_[sender.friendly_name]" //_ won't show up in ckeys so it'll never match with a real admin
|
||||
var/list/results = world.SDQL2_query(params, GLOB.AdminProcCaller, GLOB.AdminProcCaller)
|
||||
GLOB.AdminProcCaller = null
|
||||
var/list/results = HandleUserlessSDQL(sender.friendly_name, params)
|
||||
if(!results)
|
||||
return "Query produced no output"
|
||||
var/list/text_res = results.Copy(1, 3)
|
||||
|
||||
Reference in New Issue
Block a user