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

(PUP-11973) Only send compiler header for v3 catalog requests #2790

Merged
merged 2 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/clj/puppetlabs/puppetserver/ringutils.clj
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@
(handler req)
{:status 403 :body "Forbidden."})))

(defn wrap-with-certname-as-compiler
"Function that returns middleware that add X-Puppet-Compiler-Name to the response,
only for the posts to the v3 catalog endpoint. Otherwise, do nothing."
[handler name]
(fn [request]
(ring/header (handler request) "X-Puppet-Compiler-Name" name)))

(defn wrap-with-puppet-version-header
"Function that returns a middleware that adds an
X-Puppet-Version header to the response."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
false
nil
nil
nil))
nil
(get-in config [:puppetserver :certname])))
master-route-handler (comidi/routes->handler master-routes)
master-mount (master-core/get-master-mount
master-ns
Expand Down
23 changes: 15 additions & 8 deletions src/clj/puppetlabs/services/master/master_core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,8 @@
"v3 route tree for the ruby side of the master service."
[request-handler :- IFn
bolt-builtin-content-dir :- (schema/maybe [schema/Str])
bolt-projects-dir :- (schema/maybe schema/Str)]
bolt-projects-dir :- (schema/maybe schema/Str)
certname :- schema/Str]
(comidi/routes
(comidi/GET ["/node/" [#".*" :rest]] request
(request-handler request))
Expand All @@ -1072,7 +1073,8 @@
(comidi/GET ["/catalog/" [#".*" :rest]] request
(request-handler (assoc request :include-code-id? true)))
(comidi/POST ["/catalog/" [#".*" :rest]] request
(request-handler (assoc request :include-code-id? true)))
(let [request-handler (ringutils/wrap-with-certname-as-compiler request-handler certname)]
(request-handler (assoc request :include-code-id? true))))
(comidi/PUT ["/facts/" [#".*" :rest]] request
(request-handler request))
(comidi/PUT ["/report/" [#".*" :rest]] request
Expand Down Expand Up @@ -1178,9 +1180,10 @@
wrap-with-jruby-queue-limit :- IFn
boltlib-path :- (schema/maybe [schema/Str])
bolt-builtin-content-dir :- (schema/maybe [schema/Str])
bolt-projects-dir :- (schema/maybe schema/Str)]
bolt-projects-dir :- (schema/maybe schema/Str)
certname :- schema/Str]
(comidi/context "/v3"
(v3-ruby-routes ruby-request-handler bolt-builtin-content-dir bolt-projects-dir)
(v3-ruby-routes ruby-request-handler bolt-builtin-content-dir bolt-projects-dir certname)
(comidi/wrap-routes
(v3-clojure-routes jruby-service
get-code-content-fn
Expand Down Expand Up @@ -1292,7 +1295,8 @@
environment-class-cache-enabled :- schema/Bool
boltlib-path :- (schema/maybe [schema/Str])
bolt-builtin-content-dir :- (schema/maybe [schema/Str])
bolt-projects-dir :- (schema/maybe schema/Str)]
bolt-projects-dir :- (schema/maybe schema/Str)
certname :- schema/Str]
(comidi/routes
(v3-routes ruby-request-handler
clojure-request-wrapper
Expand All @@ -1303,7 +1307,8 @@
wrap-with-jruby-queue-limit
boltlib-path
bolt-builtin-content-dir
bolt-projects-dir)
bolt-projects-dir
certname)
(v4-routes clojure-request-wrapper
jruby-service
wrap-with-jruby-queue-limit
Expand Down Expand Up @@ -1366,7 +1371,8 @@
environment-class-cache-enabled :- schema/Bool
boltlib-path :- (schema/maybe [schema/Str])
bolt-builtin-content-dir :- (schema/maybe [schema/Str])
bolt-projects-dir :- (schema/maybe schema/Str)]
bolt-projects-dir :- (schema/maybe schema/Str)
certname :- schema/Str]
(let [ruby-request-handler (wrap-middleware handle-request
wrap-with-authorization-check
puppet-version)
Expand All @@ -1384,7 +1390,8 @@
environment-class-cache-enabled
boltlib-path
bolt-builtin-content-dir
bolt-projects-dir)))
bolt-projects-dir
certname)))

(def MasterStatusV1
{(schema/optional-key :experimental) {:http-metrics [http-metrics/RouteSummary]
Expand Down
3 changes: 2 additions & 1 deletion src/clj/puppetlabs/services/master/master_service.clj
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@
environment-class-cache-enabled
boltlib-path
bolt-builtin-content-dir
bolt-projects-dir))
bolt-projects-dir
certname))
routes (comidi/context path ring-app)
route-metadata (comidi/route-metadata routes)
comidi-handler (comidi/routes->handler routes)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,17 @@
(finally
(jruby-testutils/return-instance jruby-service jruby-instance :http-report-processor-metrics-test)))))))

(deftest ^:integration compiler-name-as-header
(testing "POSTs to the v3 catalog endpoint return the certname as a header"
(bootstrap-testutils/with-puppetserver-running
app
{:jruby-puppet {:gem-path gem-path
:max-active-instances 1
:server-code-dir test-resources-code-dir
:server-conf-dir master-service-test-runtime-dir}}
(let [resp (http-post "/puppet/v3/catalog/foo?environment=production" "")]
(is (= "localhost" (get-in resp [:headers "x-puppet-compiler-name"])))))))

(deftest encoded-spaces-test
(testing "Encoded spaces should be routed correctly"
(bootstrap-testutils/with-puppetserver-running
Expand Down
13 changes: 8 additions & 5 deletions test/unit/puppetlabs/services/master/master_core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
true
nil
["./dev-resources/puppetlabs/services/master/master_core_test/builtin_bolt_content"]
"./dev-resources/puppetlabs/services/master/master_core_test/bolt_projects")
"./dev-resources/puppetlabs/services/master/master_core_test/bolt_projects"
"test-certname")
(comidi/routes->handler)
(wrap-middleware identity puppet-version)))

Expand All @@ -65,10 +66,12 @@
request (partial app-request app)]
(is (= 200 (:status (request "/v3/environments"))))
(is (= 200 (:status (request "/v3/catalog/bar?environment=environment1234"))))
(is (= 200 (:status (app (-> {:request-method :post
:uri "/v3/catalog/bar"
:content-type "application/x-www-form-urlencoded"}
(ring-mock/body "environment=environment1234"))))))
(let [response (app (-> {:request-method :post
:uri "/v3/catalog/bar"
:content-type "application/x-www-form-urlencoded"}
(ring-mock/body "environment=environment1234")))]
(is (= "test-certname" (get-in response [:headers "X-Puppet-Compiler-Name"]))
(is (= 200 (:status response)))))
(is (nil? (request "/foo")))
(is (nil? (request "/foo/bar")))
(doseq [[method paths]
Expand Down
Loading