-
Notifications
You must be signed in to change notification settings - Fork 800
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
OAuth public/private key concerns #4520
Comments
Hi @vytautas-karpavicius
Agreed. I have it in the todo list in the design doc. But it’s not highest priority at the moment so we didn’t implement it. The assumption is that private key will be managed by a centralized service which return the jwt only. So we shouldn’t distribute the private keys. For example, Uber may have its own way of doing service Auth. You will build a centralized service to own the private key and return jwt to other services. Btw the only implementation in worker using private key is just example only. It’s not meant for actual production cases . Since each company will have their own service Auth mechanism, they should implement the interface themselves (mostly they won’t use private/public keys . More often they would use iam or even api keys) However, it will still make sense to allow a list of public keys for rotation purposes. So I have it as a todo for this design |
yes or no. It’s going to be difficult to guarantee all clusters have the same key pairs, and it’s not necessary to do so. But it doesn’t mean they have to be different. In your/some cases, if you want them all to be the same, it’s okay and it’s allowed. Just from a perspective of what we can provide and not, I think allowing different key pairs make more sense than require every cluster to use the same. For example, a company may have different teams started their own Cadence clusters and later on they want to connect them together in order to use XDC/cross cluster feature. This would open the possibility. Even the same team owning different clusters may want to use different keys for security purposes. |
Thank you @longquanzheng for clarifications and detailed answers. Ok, I see that multiple key pairs is indeed required and may be useful in some cases. I'm not against it and it does make sense. The issue I see, is not the fact that clusters will have different key pairs, but rather the way they are currently configured. Right now we have If we were to have a list of public keys to validate against, listing private keys for remote clusters would not be needed. The current cluster will sign it with it own private key only, no matter the destination. The remote cluster would have a list of public keys of corresponding callers that are allowed. If some centralized service or another implementation that manages the keys is used that may not be an issue - true. But for this particular implementation it can be. |
Right. I do agree the concern, and looks weird. |
#4492 |
Yes internal traffic is on gRPC by default already. For cross DC traffic, it need to be enabled like this: https://github.com/uber/cadence/blob/master/config/development_xdc_cluster0.yaml#L82 Yeah, that make sense. We will need to expose config for that. |
@vytautas-karpavicius Just realized that sys worker is broken after that PR: |
Recent PR #4364 made a change where it is possible to specify private key per cluster.
This got my attention because it implies that different clusters may have different key pairs.
cadence/common/config/cluster.go
Line 70 in 5191468
Another thing I noticed that for verification we have only one public key per cluster.
cadence/common/authorization/oauthAuthorizer.go
Line 65 in 7aca829
Here are my concerns:
Current setup implies that a cluster have a key-pair with public key on its side to validate JWT tokens. Since it has one public key to validate tokens against, this means that private key counterpart has to be distributed for signing parties. If this falls under single owner it may not be a problem.
But consider several parties. For this case you do not want to share your private key with them, as this is private by definition. Now consider the opposite scenario. Each party generates its own key-pair, keeps their private key for signing and give Cadence server maintainer their public counterpart. Now the maintainer could add the public key, but only one key can be configured, and there are several parties.
Lets review a similar pattern - ssh connection. The host has a config file
~/.ssh/authorized_keys
where multiple public keys can be added that are allowed to login.Another example github itself - you can add multiple public keys to it, that are allowed to login.
I suggest the following:
@noiarek
@longquanzheng
The text was updated successfully, but these errors were encountered: