Certificates command

[#163597674]
This commit is contained in:
dcorbacho 2019-10-01 10:59:26 +01:00
parent c7e60774d0
commit 4f5706c174
2 changed files with 96 additions and 0 deletions

View File

@ -30,6 +30,12 @@ defmodule RabbitMQ.CLI.Core.Listeners do
end)
end
def listeners_with_certificates(listeners) do
Enum.filter(listeners, fn listener(opts: opts) ->
Keyword.has_key?(opts, :cacertfile) or Keyword.has_key?(opts, :certfile)
end)
end
def listener_lines(listeners) do
listeners
|> listener_maps
@ -74,6 +80,32 @@ defmodule RabbitMQ.CLI.Core.Listeners do
Enum.map(listeners, &listener_map/1)
end
def listener_certs(listener) do
listener(node: node, protocol: protocol, ip_address: interface, port: port, opts: opts) = listener
%{
node: node,
protocol: protocol,
interface: :inet.ntoa(interface) |> to_string |> maybe_enquote_interface,
port: port,
purpose: protocol_label(to_atom(protocol)),
certfile: read_cert(Keyword.get(opts, :certfile)),
cacertfile: read_cert(Keyword.get(opts, :cacertfile))
}
end
def read_cert(nil) do
nil
end
def read_cert(path) do
case File.read(path) do
{:ok, bin} ->
bin
{:error, _} = err ->
err
end
end
def listener_rows(listeners) do
for listener(node: node, protocol: protocol, ip_address: interface, port: port) <- listeners do
# Listener options are left out intentionally, see above

View File

@ -0,0 +1,64 @@
## The contents of this file are subject to the Mozilla Public License
## Version 1.1 (the "License"); you may not use this file except in
## compliance with the License. You may obtain a copy of the License
## at https://www.mozilla.org/MPL/
##
## Software distributed under the License is distributed on an "AS IS"
## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
## the License for the specific language governing rights and
## limitations under the License.
##
## The Original Code is RabbitMQ.
##
## The Initial Developer of the Original Code is GoPivotal, Inc.
## Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
defmodule RabbitMQ.CLI.Diagnostics.Commands.CertificatesCommand do
alias RabbitMQ.CLI.Core.DocGuide
@behaviour RabbitMQ.CLI.CommandBehaviour
import RabbitMQ.CLI.Core.Listeners
use RabbitMQ.CLI.Core.MergesNoDefaults
use RabbitMQ.CLI.Core.AcceptsNoPositionalArguments
def run([], %{node: node_name, timeout: timeout}) do
case :rabbit_misc.rpc_call(node_name, :rabbit_networking, :active_listeners, [], timeout) do
{:error, _} = err ->
err
{:error, _, _} = err ->
err
xs when is_list(xs) ->
listeners = listeners_with_certificates(listeners_on(xs, node_name))
case listeners do
[] -> %{}
_ -> Enum.map(listeners, &listener_certs/1)
end
other ->
other
end
end
use RabbitMQ.CLI.DefaultOutput
def formatter(), do: RabbitMQ.CLI.Formatters.Erlang
def usage, do: "certificates"
def usage_doc_guides() do
[
DocGuide.configuration(),
DocGuide.tls()
]
end
def help_section(), do: :observability_and_health_checks
def description(), do: "Displays the node certificates for every lisetener configured to use TLS"
def banner(_, %{node: node_name}), do: "Certificates of node #{node_name} ..."
end