HTTP ACL

An external self-built HTTP application authentication data source is used for HTTP authentication, and the authentication result is judged based on the data returned by the HTTP API, which can implement complex ACL verification logic.

Plugin:

  1. emqx_auth_http

TIP

The emqx_auth_http plugin also includes authentication function, which can be disabled via comments.

To enable HTTP ACL, the following needs to be configured in etc/plugins/emqx_auth_http.conf:

ACL Authentication principle

EMQ X Broker uses the current client related information as parameters in publish/subscribe events, initiates request permissions to user-defined authentication services, and processes ACL authentication requests through the returned HTTP statusCode .

  • Authorization denied: API returns 4xx status code
  • Authorization succeeded: API returns 200 status code
  • Authorization ignored: API returns 200 status code with the message body of ignore

HTTP Request Information

Basic request information, configure certificates, request headers, and retry rules of HTTP API.

  1. # etc/plugins/emqx_auth_http.conf
  2. ## Certificate information required to enable HTTPS
  3. ## auth.http.ssl.cacertfile = etc/certs/ca.pem
  4. ## auth.http.ssl.certfile = etc/certs/client-cert.pem
  5. ## auth.http.ssl.keyfile = etc/certs/client-key.pem
  6. ## Request header setup
  7. ## auth.http.header.Accept = */*
  8. ## Retry setup
  9. auth.http.request.retry_times = 3
  10. auth.http.request.retry_interval = 1s
  11. auth.http.request.retry_backoff = 2.0

When performing publish/subscribe authentication, EMQ X Broker will use the current client information and initiate a user-configured ACL authorization query request to query the client’s authorization data on the HTTP server.

superuser Request

Check whether the client is a super user at first. If the client is a super user, the ACL query will be skipped.

  1. # etc/plugins/emqx_auth_http.conf
  2. ## Request address
  3. auth.http.super_req = http://127.0.0.1:8991/mqtt/superuser
  4. ## HTTP request method
  5. ## Value: post | get | put
  6. auth.http.super_req.method = post
  7. ## Request parameter
  8. auth.http.super_req.params = clientid=%c,username=%u

ACL authorization query request

  1. # etc/plugins/emqx_auth_http.conf
  2. ## Request address
  3. auth.http.acl_req = http://127.0.0.1:8991/mqtt/acl
  4. ## HTTP request method
  5. ## Value: post | get | put
  6. auth.http.acl_req.method = get
  7. ## Request parameter
  8. auth.http.acl_req.params = access=%A,username=%u,clientid=%c,ipaddr=%a,topic=%t,mountpoint=%m

Request description

When the HTTP request method is GET, the request parameters will be passed in the form of a URL query string; POST and PUT requests will submit the request parameters in the form of a common form (content-type is x-www-form-urlencoded).

You can use the following placeholders in the authentication request, and EMQ X Broker will be automatically populated with client information when requested:

  • %u:User name
  • %c:Client ID
  • %a:Client IP address
  • %r:Client Access Protocol
  • %P:Clear text password
  • %p:Client Port
  • %C:TLS certificate common name (the domain name or subdomain name of the certificate), valid only for TLS connections
  • %d:TLS certificate subject, valid only for TLS connections

WARNING

The POST and PUT methods are recommended. When using the GET method, the clear text password may be recorded with the URL in the server log during transmission.