For the most up to date information related to the EdgeX security disclosure, vulnerabilities, and hardening guide refer to the EdgeX Security Wiki Page
Starting with the Fuji release, EdgeX includes enhanced security features that are enabled by default. There are 2 major components that are responsible for security features:
Component | Description |
---|---|
Security-secretstore-setup | Security-secretstore-setup is responsible for initializing the secret store to hold various credentials for EdgeX. |
Security-proxy-setup | Security-proxy-setup is responsible for initializating the EdgeX proxy environment, which includes setting up related permissions and authentication methods. The proxy will protect all the REST API resources. |
When starting a secure EdgeX deployment, the sequence is defined by the EdgeX secure bootstrapping Architecture Decision Record. In general the sequence is:
- Start a bootstrapping component that sequences the framework startup.
- Start the EdgeX secret store component.
- Start the
secretstore-setup
container to initialize the secret store and create shared secrets (such as database passwords) needed by the microservices. - Start the other stateful components of EdgeX.
- Start the non-stateful EdgeX services.
- Start the
proxy-setup
container to configure the Kong API gateway.
The startup sequence is automatically coordinated to boot in the proper order to ensure correct functioning of EdgeX.
This documentation assumes that EdgeX has been started from the
docker-compose
scripts in the
edgex-compose respository.
Once EdgeX is up and running, the following steps are required to access EdgeX resources:
-
The user needs to create an access token and associate every REST request with the security token while sending the request. Run the following command from the
edgex-compose
root folder:$ make get-token
The above command will create an access token. One example of an access token is:
eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MjMwODMwNzgsImlhdCI6MTYyMzA3OTQ3OCwiaXNzIjoiOGJlYjRiNzUtZDA0Mi00YmE0LWFlOTctOTFjMDcxYTJmZGM0IiwibmJmIjoxNjIzMDc5NDc4fQ.KqAgCg63zjtFSvMtChLoLyIrmh8xQdb0t4sroIbLhOtgBnacaTlOdoT33VQY0QGkCEFdE1VT8WjjwrbIwitpDQ
.
Yours will differ from this one.Note that the
get-token
Makefile target by default generates a public/private keypair in a temporary folder that is deleted after the token is created. For production usage, one would want to keep this keypair around and use it to generate future access tokens. -
Individual microservice ports (such as 59880, 59881 etc.) will be inaccessible for security reasons. Instead, all the REST requests need to go through the proxy, and the proxy will redirect the request to individual microservice on behalf of the user.
E.g, if we need to send a request to the ping endpoint of coredata, without security this would look like:
curl http://{coredata-microservice-ip}:59880/api/v1/ping
With security services enabled, the request would look like this:
token=(paste output of `make get-token` here) curl -k https://{kong-ip}:8443/core-data/api/v2/ping -H "Authorization: Bearer $token"
Note the request is made over https to the proxy-service's IP address on port 8443. The access token is also included in the
Authorization
header.
As an example, let's say you want to start core-metadata outside a container so you can debug it. All EdgeX microservices need a non-expired authentication token to the EdgeX secret store in order to run. Be aware that
-
Tokens expire after 60 minutes if not renewed. If you are starting/stopping a microservice and the service token has expired, fully shut down and restart the environment (
make down
andmake run
) to get fresh tokens for all. -
/tmp/edgex/secrets/...
where the tokens live is only root readable. You can run the microservice as root or use the following to open up the tree. Note you will need to repeat the chmod each time you restartsecretstore-setup
service.pushd /tmp/edgex sudo find . -type d -exec chmod a+rx {} /dev/null \; sudo find . -type f -exec chmod a+r {} /dev/null \; popd
Fortunately, between go-mod-boostrap and microservice self seeding this is quite straight forward:
sudo bash
cd cmd/core-metadata
EDGEX_SECURITY_SECRET_STORE=true ./core-metadata
Environment Override | Description |
---|---|
EDGEX_SECURITY_SECRET_STORE=true | Enable security flag (optional, security enabled by default) |
Security is enabled by default, but some developers run EdgeX =
with EDGEX_SECURITY_SECRET_STORE=false
set in their environments.
The above command ensures that security is enabled for this particular run of the EdgeX microservice.
The defaults are loaded from res/configuration.toml
and then the environment variables override the defaults.
-
Both Kong and the microservice need to agree on the host were the microservice lives. To that end, if you are mixing container based infrastructure (e.g. Kong) and native microservices you will need to do the following
- Tell the Kong container about the host (assume its 10.138.0.2 in this example). Add the following to the Kong entry in the compose file
extra_hosts: - "edgex-core-metadata:10.138.0.2" - "edgex-core-data:10.138.0.2" - "edgex-core-command:10.138.0.2"
and add the following to the environment section
- 'Clients_CoreData_Host: edgex-core-data' - 'Clients_Logging_Host: edgex-support-logging' - 'Clients_Notifications_Host: edgex-support-notifications' - 'Clients_Metadata_Host: edgex-core-metadata' - 'Clients_Command_Host: edgex-core-command' - 'Clients_Scheduler_Host: edgex-support-scheduler'
- Tell the OS about the host by adding the following to
/etc/hosts
10.138.0.2 edgex-core-data 10.138.0.2 edgex-core-metadata 10.138.0.2 edgex-core-command
and tell the microservice about the host (only core-metadata shown here)
export Clients_Metadata_Host=edgex-core-metadata
- Chat: https://slack.edgexfoundry.org/
- Mailing lists: https://lists.edgexfoundry.org/mailman/listinfo