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

Encrypted logs #306

Merged
merged 7 commits into from
Apr 2, 2025
Merged

Encrypted logs #306

merged 7 commits into from
Apr 2, 2025

Conversation

patrikpordi
Copy link
Contributor

Added logic to handle encrypted logs(.ulge) files

Copy link

@dakejahl dakejahl left a comment

Choose a reason for hiding this comment

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

Looks good! Did you test the failure modes?

  • upload a .ulg with the .ulge extension
  • upload a .ulge with the .ulg extension
  • incorrect/missing private key

@patrikpordi
Copy link
Contributor Author

I tested the following:

  • Wrong key/ missing key for encrypted(.ulge) files
  • Right key for encrypted(.ulge) files
  • Not encrypted(.ulg) files

Regarding:

  • upload a .ulg with the .ulge extension:
    It gives invalid header error since it does not have "ULogEnc"

  • upload a .ulge with the .ulg extension
    This is not handled atm, give the already existing "Invalid file" error

I can take care of them , see my answer above for your question regarding parsing!

@DronecodeBot
Copy link

This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there:

https://discuss.px4.io/t/px4-sync-q-a-mar-26-2025/44527/3

@DronecodeBot
Copy link

This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there:

https://discuss.px4.io/t/px4-sync-q-a-mar-26-2025/44527/4

@DronecodeBot
Copy link

This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there:

https://discuss.px4.io/t/px4-sync-q-a-mar-26-2025/44527/1

Copy link
Member

@bkueng bkueng left a comment

Choose a reason for hiding this comment

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

Nice, looks pretty good

Comment on lines +523 to +524
if not os.path.exists(private_key_path):
raise FileNotFoundError(f"Private key not found at {private_key_path}")
Copy link
Member

Choose a reason for hiding this comment

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

This could be checked on startup (if the path is set in the config)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It could be, but in that case I think a variable should be added to avoid checking it when working with normal logs

Added the key path to the config, modified the logic accordingly
Created local method in upload.py and modified the logic slightly
@patrikpordi
Copy link
Contributor Author

@bkueng I made most of the suggested modifications and left a comment for the rest.
Let me know if there is anything else is needed!

Copy link
Member

@bkueng bkueng left a comment

Choose a reason for hiding this comment

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

@@ -23,6 +23,9 @@ mapbox_api_access_token =
# available RAM and Log file size. Should be a power of 2.
log_cache_size = 8

# Encryption key
ulge_private_key = ../private_key/private_key.pem
Copy link
Member

Choose a reason for hiding this comment

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

Can you keep this empty by default? You could add it as a comment.

Copy link
Member

@bkueng bkueng left a comment

Choose a reason for hiding this comment

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

Good to merge

@bkueng bkueng merged commit e6991d0 into PX4:main Apr 2, 2025
5 checks passed
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.

4 participants