-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
oci downloader fails in opa docker image #7189
Comments
I tried to create a custom docker image, fetching the exact same binary, I have locally where its working. But it still fails the same. Could it be that these containerd libs in use are getting confused by being run in a container? FROM docker.io/library/debian:stable-slim
ADD https://github.com/open-policy-agent/opa/releases/download/v0.70.0/opa_linux_amd64 .
RUN echo '2879c01f1e5762f28e27c9f81b4035bd5f532753f18c2c6dcbc2943347cc6ea5 opa_linux_amd64' | sha256sum -c
RUN install opa_linux_amd64 /usr/local/bin/opa
ENTRYPOINT ["/usr/local/bin/opa"] |
This is the error for the blob requests. This one only comes when This one is most strange, because it has aleady sucessfully requested Bundle load failed: failed to pull org.azurecr.io/acme/policy:latest:
download for 'org.azurecr.io/acme/policy:latest' failed: failed to
ingest: copy failed: httpReadSeeker: failed open: unexpected status code
https://org.azurecr.io/v2/acme/policy/blobs/sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356:
403 Server failed to authenticate the request. Make sure the value of
Authorization header is formed correctly including the signature. |
I created a repo here with this reproduction: It also contains go code trying to replicate the behavior of opa, by |
You can check the environment of the running OPA server by querying for |
Hi, I run the command on the web ui from the official opa docker image. {
"result": [
{
"x": {
"ACR_BUNDLE": "org.azurecr.io/acme/policy:latest",
"ACR_TOKEN": "org:<redacted admin token>",
"ACR_URL": "https://org.azurecr.io",
"HOME": "/",
"HOSTNAME": "e2ebb7897e97",
"PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/",
"SSL_CERT_FILE": "/etc/ssl/certs/ca-certificates.crt"
}
}
]
} When I turn on debug logs, we can see it does authenticate successfully [DEBUG] OCI - Download starting.
[DEBUG] OCIDownloader: using auth plugin: *rest.bearerAuthPlugin
[DEBUG] resolving
host = "org.azurecr.io"
[DEBUG] do request
request.header.user-agent = "containerd/1.7.23+unknown"
host = "org.azurecr.io"
url = "https://org.azurecr.io/v2/acme/policy/manifests/latest"
request.header.accept = "application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*"
request.method = "HEAD"
[DEBUG] fetch response received
response.header.etag = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.header.access-control-expose-headers.2 = "Link"
response.header.x-content-type-options = "nosniff"
response.header.docker-content-digest = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.header.date = "Sat, 23 Nov 2024 17:05:02 GMT"
response.header.access-control-expose-headers.3 = "X-Ms-Correlation-Request-Id"
response.header.x-ms-client-request-id = ""
response.header.content-type = "application/vnd.oci.image.manifest.v1+json"
response.header.strict-transport-security.1 = "max-age=31536000; includeSubDomains"
host = "org.azurecr.io"
response.header.x-ms-correlation-request-id = "bfc4bff4-b174-4772-a11d-20b3e4aca8c2"
response.header.strict-transport-security = "max-age=31536000; includeSubDomains"
response.header.connection = "keep-alive"
response.header.docker-distribution-api-version = "registry/2.0"
response.header.x-ms-request-id = "313dff1f-6ee8-44dd-9f09-f1f3f816a929"
response.status = "200 OK"
response.header.access-control-expose-headers.1 = "WWW-Authenticate"
response.header.server = "AzureContainerRegistry"
response.header.access-control-expose-headers = "Docker-Content-Digest"
response.header.content-length = 549
url = "https://org.azurecr.io/v2/acme/policy/manifests/latest"
[DEBUG] resolved
host = "org.azurecr.io"
desc.digest = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
[DEBUG] do request
digest = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
url = "https://org.azurecr.io/v2/acme/policy/manifests/sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
request.method = "GET"
request.header.accept = "application/vnd.oci.image.manifest.v1+json, */*"
request.header.user-agent = "containerd/1.7.23+unknown"
[DEBUG] fetch response received
response.header.access-control-expose-headers = "Docker-Content-Digest"
response.header.docker-distribution-api-version = "registry/2.0"
response.header.date = "Sat, 23 Nov 2024 17:05:02 GMT"
response.header.access-control-expose-headers.3 = "X-Ms-Correlation-Request-Id"
response.header.x-ms-correlation-request-id = "61e072b2-1176-44ae-a63e-a7507a596260"
response.header.content-length = 549
response.header.connection = "keep-alive"
response.header.x-content-type-options = "nosniff"
response.header.access-control-expose-headers.2 = "Link"
response.header.content-type = "application/vnd.oci.image.manifest.v1+json"
digest = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.header.etag = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.header.strict-transport-security.1 = "max-age=31536000; includeSubDomains"
response.header.access-control-expose-headers.1 = "WWW-Authenticate"
response.header.server = "AzureContainerRegistry"
url = "https://org.azurecr.io/v2/acme/policy/manifests/sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.header.strict-transport-security = "max-age=31536000; includeSubDomains"
response.header.x-ms-request-id = "f55af762-73c8-4ab4-a50c-9527adbbe0da"
response.header.x-ms-client-request-id = ""
response.header.docker-content-digest = "sha256:a17a80e88aa467b8101eae2c90c209ca07006483d5663c02a4bc8593b87c1320"
response.status = "200 OK"
[DEBUG] do request
request.method = "GET"
request.header.accept = "application/vnd.oci.image.layer.v1.tar+gzip, */*"
request.header.user-agent = "containerd/1.7.23+unknown"
url = "https://org.azurecr.io/v2/acme/policy/blobs/sha256:2c2def83472ef874c864e9a9af91e57cffef3076537e34919cfb5b2d459d6b7d"
digest = "sha256:2c2def83472ef874c864e9a9af91e57cffef3076537e34919cfb5b2d459d6b7d"
[DEBUG] do request
digest = "sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
url = "https://org.azurecr.io/v2/acme/policy/blobs/sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
request.header.accept = "application/vnd.oci.image.config.v1+json, */*"
request.method = "GET"
request.header.user-agent = "containerd/1.7.23+unknown"
[DEBUG] fetch response received
response.header.date = "Sat, 23 Nov 2024 17:05:02 GMT"
response.header.content-length = 321
response.status = "403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature."
response.header.content-type = "application/xml"
response.header.server = "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0"
response.header.x-ms-request-id = "2ec3e60f-f01e-006f-08c9-3d83bc000000"
digest = "sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
url = "https://org.azurecr.io/v2/acme/policy/blobs/sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[ERROR] Bundle load failed: failed to pull org.azurecr.io/acme/policy:latest: download for 'org.azurecr.io/acme/policy:latest' failed: failed to ingest: copy failed: httpReadSeeker: failed open: unexpected status code https://org.azurecr.io/v2/acme/policy/blobs/sha256:ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356: 403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
plugin = "bundle"
name = "main" |
Can you try the edge image tag? Perhaps your binary was built from main and the docker image is the latest release. |
Nevermind you've ruled that out before. Hmm |
OK, it's a bit of a long shot, but could this be time or timezone related? Is, for some reason, the time in your container host off? I'm wondering because request signatures usually have something time-related to them, so clock drift could give you an invalid signature. uld rule that out -- since it's unlikely that my clock is adrift in the same way -- but I don't have any ACR setup to try this with. |
Yeah, I dont really know what do anymore. I guess this is one of those I could create an ACR on our infrastructure and share access credentials, I will try to look into the time. But I want to point out that the go code |
You can do that, but I'm unlikely to get around to try it until Monday. You could send them to me on the OPA slack.
Have you tried putting your custom go code into the exact same OPA image (via FROM openpolicyagent/opa:...) and see if it works the same there? This would let us rule out (I believe) that there's something specifically odd about our base image. |
The ACR, I have shared with you yesterday, works now locally as well for me,
|
@carabasdaniel @DerGut have y'all seen this before? |
I have noticed that the local binary case doesn't do as many requests to ACR as the container. The container/non-container difference seems to be that ORAS is caching. And indeed, If we hinder that, by something like func NewOCI(config Config, client rest.Client, path, storePath string) *OCIDownloader {
+ t := filepath.Join(os.TempDir(), time.Now().String())
+ localstore, err := oci.New(t)
- localstore, err := oci.New(storePath) we see the same behaviour: it's failing a lot instead of pulling the bundle, even outside of the container. The issue thus has to do with pulling from ACR, and nothing to do with running in a container. The local caching only hid the problem, and in a fresh docker container that wasn't the case. |
So, I've been swarming on the problem together with @bluebrown for a bit this morning and we've found that at some point, OPA's HTTP auth and OCI code sets an Authorization header where there shouldn't be one.
|
To add more context, the redirect is to azure blob storage, as this is used by ACR as backend.
Therefore, adding an Authorization header on this request leads to ambiguity, since two |
So, I am doing some research if there is something in the http spec, I didn't find anything specific so far but I found this issue : Maybe we can do something similar and add another field to the What do you think about that @srenatus ? |
Hmm. I suppose it would work, yeah. What confused me a bit is that the resolver specifically re-authorizes redirects -- i.e., it does the steps to add the headers again here. And yet, when you use the gist you've created, that is not a problem. The header is not there. And yet, when the OPA OCI code is used, it is added again? So it seems like something is wrong, and that workaround would be duct tape applied to the problem 😉 On that axios link, they end up having follow-redirects drop the authorization header when the redirect goes to another host.. That sounds reasonable, but I still wonder if there isn't some simple thing in the auth plugin <--> oci interaction we're doing that we shouldn't do. In a DM, you pointed at this code, maybe that is the simple thing we're doing wrong? 🤔 |
As I understand, the config returns an http client. that is passed to docker.Authorizer Line 342 in 270f31f
The client passed is the one from the rest plugin, calling bearer auth's prepare, on each request. Line 321 in 270f31f
I think this is wrong. I think that docker resolver should not get a client that does any auth, Line 624 in 270f31f
We dont need to call prepare, we can get the token from the config.Bearer.Token field, Line 303 in 270f31f
|
Short description
When I run OPA locally, from binary release, I am able to download OCI
bundles. When I use the same version of OPA from the official docker hub
repo, it fails with 403.
Sometimes, it even fails only after the first metadata requests, on
subrequests, to get the blobs.
I have experienced the same issue on a deployed OPA instance,
in Kubernetes.
Steps to reproduce
Files
.env:
opa config:
Local
Docker
Expected behavior
I would expect that OPA in the container image has the same capabilities
as the binary release.
The text was updated successfully, but these errors were encountered: