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

Handle sequence of query packets #637

Merged
merged 24 commits into from
Feb 20, 2023

Conversation

Lagovas
Copy link
Collaborator

@Lagovas Lagovas commented Feb 15, 2023

Main goal of this PR to support cases with several Parse packets in the one TCP packet.
Now, if Acra receive Parse_1 + Bind_1 + Parse_2 + Bind_2 + Execute_1, it will collect encryption settings from the Parse_1, then overwrite it from Parse_2. And when process data rows after the execute it will apply encryption settings for Parse_1 matched to the Parse_2. Because it stores only last one.

But there is not only that problem. DB driver can register prepared statements in the one packet and execute in the next one in the another order. And there is no way to pull correct settings for incoming DataRow.
In this PR acra remember only packets that request DataRow from the db. It is SimpleQuery and Execute. Only these two type of packets request rows from the database. So now, we remember query or set of packets from the extended protocol with Parse + Bind + Execute packets.

But we should know when we should remove saved packet and stop apply these settings for the next packets. Database separates results for requests by CommandComplete (one for every Execute and set of them each query in SimpleQueryPacket that may contain several SQL splited by ';'), ErrorResponse, EmptyResultResponse (only for SimpleQuery with sql='') and PortalSuspended (only for Execute).
So, there is added tracking incoming commands for data rows and parsing queries for settings only before data decryption stage.
Also removed tracking redundant packets like Bind/Parse, because doesn't need anymore.

It is draft because remaining integration test with simulation custom flow with several parse/execute pairs. But main logic is ready for review

Checklist

@Lagovas Lagovas requested a review from Zhaars February 15, 2023 02:04
Copy link
Contributor

@Zhaars Zhaars left a comment

Choose a reason for hiding this comment

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

Cool, I got the idea. Left only a couple of asks/comments.

return &proxySetting{
keystore: keystore, parser: parser, tableSchemaStore: tableSchema, censor: censor,
connectionWrapper: wrapper, poisonRecordCallbackStorage: callbackStorage,
}, nil
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we need to return err in this constructor? I see no error-returning stuff here, or its a stub for future things?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

no, we don't need. will return back. one of the approach was to initialize extractor in the setting but after that took cycle imports which hard to fix. so moved it to the proxy but forgot back function signature back

func NewEncryptionSettingExtractor(ctx context.Context, schema config.TableSchemaStore, parser *sqlparser.Parser) (EncryptionSettingExtractor, error) {
queryEncryptor, err := encryptor.NewPostgresqlQueryEncryptor(schema, parser, nil)
if err != nil {
return EncryptionSettingExtractor{}, nil
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we return the error here?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

yes, will add

@Lagovas Lagovas marked this pull request as ready for review February 19, 2023 00:57
@Lagovas Lagovas requested a review from Zhaars February 19, 2023 00:57
Copy link
Contributor

@Zhaars Zhaars left a comment

Choose a reason for hiding this comment

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

Awesome!

@Lagovas Lagovas merged commit c2b6de1 into master Feb 20, 2023
@Lagovas Lagovas deleted the lagovas/handle-sequence-of-query-packets branch February 20, 2023 20:51
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.

None yet

2 participants