Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(script): Support script flags of Eval script and Function #2446

Merged
merged 18 commits into from
Aug 14, 2024

Conversation

PokIsemaine
Copy link
Contributor

@PokIsemaine PokIsemaine commented Jul 25, 2024

fix: #1884, #2133
a part of: #2414

This PR is designed to support three script flags within Eval Script and Function: no-writes, no-cluster, and allow-cross-slot-keys.

Implementation Details
Focus on ScriptRunCtx. I use it to pass context between Lua and C++. Before executing the Lua script, SaveOnRegistry stores the parsed flags in REGISTRY_SCRIPT_RUN_CTX_NAME. During the execution of the Lua script, GetFromRegistry retrieves the flags of the currently executing script. After the script execution ends, it should be set to nil.

For APIs like EVAL, SCRIPT LOAD, and FUNCTION LOAD, the flags parsed from the Eval Script will be stored in Lua's global variable f_<sha>_flags_. The flags parsed by FUNCTION register_function() will be stored in the Lua global variable _registered_flags_<funcname>.

Testing

  • Distinguish between the default values with and without #! in the EVAL Script.
  • Function’s name= and EVAL Script’s flags= which will not appear simultaneously.
  • FUNCTION requires #!lua and name=.
  • Even with allow-cross-slot-keys, pre-defined Keys are still prohibited from crossing Slots.
    Different slots on different nodes are still prohibited from crossing Slots. However, slots on the same node are allowed to cross slots when this flag is enabled (generally not recommended).
  • The read_only of EVAL_RO, EVALSHA_RO, and FCALL_RO will be added to the script flags, and even if the no-writes flag is not set, checks will still be performed.

Note
Since I am not very familiar with Lua, the rationality and safety of related operations need to be reviewed.

@mapleFU
Copy link
Member

mapleFU commented Jul 25, 2024

Just ping me if ready for code review

Copy link
Member

@PragmaTwice PragmaTwice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think inside the lua vm we can have such global variables:

f_<sha>_flags  ->  <flags (encoded to integer)>
__redis_registered_flags_<func name>  ->  <flags (encoded to integer)>

and we can construct ctx quickly when the lua function is called.

@xiaobiaozhao xiaobiaozhao self-requested a review July 25, 2024 11:08
@PokIsemaine PokIsemaine marked this pull request as ready for review July 26, 2024 11:50
@xiaobiaozhao xiaobiaozhao removed their request for review July 30, 2024 01:41
@PokIsemaine
Copy link
Contributor Author

image

The converting integer part uses the lua_tointegerx API, which actually belongs to lua 5.2. luaJIT is compatible with lua 5.1 and also extends this API, but lua 5.1 itself does not support it.
I use this API because I want to detect the case where the conversion to integer fails, I don't use lua_tointeger because on failure it returns 0, which is indistinguishable from a true 0.
Two possible solutions:

  1. Upgrade lua to 5.2
  2. Just use lua_tointeger and the conversion is successful by default. The flags stored to lua here are controlled, generated by kvrocks and illegal flags should be detected during parsing. I think we can ignore the detection during conversion.

What do you think, or is there a better solution? @PragmaTwice

@PragmaTwice
Copy link
Member

I think maybe we can just use lua_isinteger to check before calling lua_tointeger?

@PokIsemaine
Copy link
Contributor Author

I think maybe we can just use lua_isinteger to check before calling lua_tointeger?

This API seems to be supported by lua 5.3

@PokIsemaine PokIsemaine marked this pull request as draft August 10, 2024 08:19
@PokIsemaine PokIsemaine marked this pull request as ready for review August 10, 2024 11:38
Copy link
Member

@git-hulk git-hulk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, this PR is in good shape.

Copy link
Member

@PragmaTwice PragmaTwice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGMT except that I'm not so familiar with the impl of Cluster::CanExecByMySelf.

cc @mapleFU @git-hulk could you check it when you have time?

@git-hulk
Copy link
Member

LGMT except that I'm not so familiar with the impl of Cluster::CanExecByMySelf.

cc @mapleFU @git-hulk could you check it when you have time?

Sure, I have checked and looks good from my side.

@git-hulk
Copy link
Member

@mapleFU To see if you have further comments? or we can merge this PR to avoid pending too long.

Copy link

@git-hulk git-hulk merged commit a86d317 into apache:unstable Aug 14, 2024
31 checks passed
@PokIsemaine PokIsemaine deleted the lua-script branch August 14, 2024 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add support for allow-cross-slot-keys for lua function
4 participants