-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Change: move sensitive information to secrets.cfg and private information to private.cfg #9298
Conversation
ecd283d
to
fb72fa1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally I think that the ini not removing settings that are not known to it is not a bad thing. This means switching between development/main/beta/rc and release won't remove all your development/main/beta/rc settings.
However, here I would propose implementing something that does remove them from the settings but only under certain circumstances. For me that would be IsReleasedVersion()
and _openttd_newgrf_version > 1 << 28 | 12 << 24
, or any release version 1.12.0 or later. By then it is relatively unlikely that you go back to an earlier version regularly, so it would not burden people switching between development and release builds.
Similarly I think, for the average Joe, it would be better to migrate the settings. Or rather, when it is not set in secrets.ini, take the value from settings.ini (you already have the ini file loaded). The removal of the settings should of course come after this. Both of these are not necessarily part of this PR.
The server-name and client-name are not really secret, it's mostly not useful to have them in a settings file that is used by others, though I'm not really sure that warrants them being secrets. Currently last-joined and servers do not really matter, though if those get join keys that might become slightly more problematic. The server-bind-addresses are not really a problem with respect to secrecy, and other people cannot use that information to fake a server. After all, they do not own that IP, or it is a local IP.
The bans are a bit tricky, though maybe this is the time to consider the separate banlist ini file.
So maybe have a private_secrets.cfg
and private_settings.cfg
, where passwords and unique IDs go in the former file and other things that should not be distributed in settings.cfg would go in the latter file such as the (last joined) servers. Yes, private secrets are a bit double in the naming, but I hope that brings over the point that they are really private and secrets so people are less likely to distribute them.
I really would like to have the migration in this PR too, but my earlier attempts failed. But I now have an idea how I possibly can pull it off :) Tnx to some rewrites someone did :P
I like this approach. I will make it so :) |
fb72fa1
to
cb42fc3
Compare
This current version doesn't work as I want it .. our ini-loader is rather annoying :P I tried to load first from |
cb42fc3
to
b5e32b6
Compare
Finally had a good idea how to do the migration ... by introducing an That does mean that if you go back to before this PR, those fields reset. But if you go past this PR again, as However, I am unsure if adding a IniFileVersion is really needed. I could also just add a flag or indicator. Not sure if this would ever be used again in the future. But I need at least something to know you have been past this PR with your configuration .. so alternatives for this are more than welcome. Also, there is now |
b5e32b6
to
e43a776
Compare
This to prepare the code to split up network-related settings into private / secrets / generic.
Can I suggest writing a short comment at the top of |
e43a776
to
b9f7f6a
Compare
To put IRC here: I am not too worried that people confuse this Sadly, When writing The small downside of this approach is, that it will always overwrite this comment, so if people manually alter it, it will be overwritten on next save. This shouldn't be a problem at all, but before this change, ini-files always kept what-ever spacing/comments was between groups. |
b9f7f6a
to
1121612
Compare
Instead of creating the object on heap and use a pointer, create the object on stack and use a guaranteed-not-null pointer. The size of IniFile doesn't warrent the forcing to heap. Additionally, use a subclass instead of a function to do some initial bookkeeping on an IniFile meant to read a configuration.
Clearly someone really wanted to generalize the function, but in reality it makes it a lot longer than needed. Let's keep it simple.
…tion to private.cfg We often ask people for their openttd.cfg, which now includes their passwords, usernames, etc. It is easy for people to overlook this, unwillingly sharing information they shouldn't. By splitting this information over either private.cfg or secrets.cfg, we make it more obvious they shouldn't be sharing those files, and hint to what is inside them.
1121612
to
905dd7b
Compare
Motivation / Problem
While working on the STUN patch (#9017), I wanted to store a secret on the client. The only place we currently have to do this, is
openttd.cfg
. This has a huge draw-back for several reasons:openttd.cfg
in bug-reports, basically telling the world about the secret.openttd.cfg
pretty easily with others, sharing their secret too.In my case, this would mean that getting your hands on an
openttd.cfg
meant you could claim the invite-code, and do a hostile take-over of their server.A closer look made us realise that storing secrets in
openttd.cfg
is already an issue:default_company_pass
,rcon_password
, etc. In general it is not wise to store this information in the same file as all other configuration, especially as it is shared this easily.Description
In result, I set out to find a way to create a
secrets.cfg
which contains secrets people should not be sharing. The name should make that obvious enough.Additionally, as suggested by @rubidium42 , I also created a
private.cfg
to store things like:Basically, everything with identifiable information. This information people shouldn't be sharing freely either, but aren't exactly secrets.
When you start the game the first time with/after this PR, while already having a settings file from before, it will automatically migrate the settings to the new files and remove it from
openttd.cfg
. This is a one time migration.Limitations
IniFileVersion
is really needed. I could also just add a flag or indicator. Not sure if this would ever be used again in the future. But I need at least something to know you have been past this PR with your configuration .. so alternatives for this are more than welcome.Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.