-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add machinery to do client-side RDP license caching #47634
base: master
Are you sure you want to change the base?
Conversation
Expose a Cgo interface for writing licenses to the agent's process storage.
e3c5e8a
to
c992a86
Compare
case len(license) > 0: | ||
log.InfoContext(context.Background(), "found existing RDP license") |
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.
what should happen in case of err == nil && len(license) == 0
?
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.
That's not something I've commonly seen in Go code. It's generally safe to assume that a nil error means we're returning valid data.
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.
So why use additional case here? can we skip it and simply log after switch?
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.
I'm not sure I follow?
I want to be able to tell from the logs if:
- We know there wasn't an existing license.
- We know there was an existing license.
- We don't know if there was a license or not because we encountered an error.
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.
Right now the switch is not exhaustive, case where err == nil
and len(license) == 0
will log nothing.
So, we either don't care about the length (we assume it's >0
when err==nil
) and we can skip the length check (by either returning early in case of errors above and logging happy path outside of switch or changing last case to default) or we do care and should log something different in that case
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.
Fair enough, we can change the last case to a default case instead.
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.
We could error upon trying to write an empty license (if that's ever plausible) and treat an empty license as a not found error, too.
For what it's worth we seem to always avoid writing items with a blank value in the backend - nothing bad should happen, but...
@@ -233,6 +235,31 @@ func (p *ProcessStorage) WriteTeleportVersion(ctx context.Context, version *semv | |||
return nil | |||
} | |||
|
|||
func (p *ProcessStorage) rdpLicenseKey(majorVersion, minorVersion uint16, issuer, company, productID string) backend.Key { | |||
return backend.NewKey("rdplicense", issuer, strconv.Itoa(int(majorVersion)), strconv.Itoa(int(minorVersion)), company, productID) |
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.
Are we ever going to list the licenses? If so, are we more likely to want to list them by issuer major minor company productid, or some other order?
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.
Order of the keys don't really matter as we don't ever need to list them. The only operation we need to support is "does a license exist for these specific values?"
*data_out = nil | ||
*len_out = 0 | ||
|
||
client, err := toClient(handle) | ||
if err != nil { | ||
return C.ErrCodeFailure | ||
} | ||
|
||
issuer := C.GoString(req.issuer) | ||
company := C.GoString(req.company) | ||
productID := C.GoString(req.product_id) |
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.
We are currently recovering against panics in toClient
; while that's pretty gross, should we be consistent and also check that req
and the out pointers are not nil?
case len(license) > 0: | ||
log.InfoContext(context.Background(), "found existing RDP license") |
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.
We could error upon trying to write an empty license (if that's ever plausible) and treat an empty license as a not found error, too.
For what it's worth we seem to always avoid writing items with a blank value in the backend - nothing bad should happen, but...
Expose a Cgo interface for writing licenses to the agent's process storage.