NONRTRIC-946: Servicemanager - Add Read The Docs
[nonrtric/plt/sme.git] / docs / overview.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. SPDX-License-Identifier: CC-BY-4.0
3 .. Copyright (C) 2023 Nordix
4 .. Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
5
6 #############
7 Overview
8 #############
9
10 Service Management and Exposure has 2 components - CAPIF Core and Service Manager. Capifcore is found in the "capifcore" directory,
11 and Service Manager is in the "servicemanager" directory.
12
13 This product is a part of :doc:`NONRTRIC <nonrtric:index>`.
14
15 *************
16 CAPIF
17 *************
18
19 Introduction
20 ************
21
22 CAPIF stands for Common API Framework and it was developed by 3GPP to enable a unified Northbound API framework across 3GPP network functions, and to ensure that there is a single and harmonized approach for API development.
23
24 Key features in CAPIF includes onboarding and offloading of application functions, service discovery and management, event subscription and notification as well as authorization and authentication.
25
26 It was delivered in Rel-15 (Refer to 3GPP TS 23.222 and 3GPP TS 29.222).
27
28 Functional entities
29 ===================
30
31 The CAPIF consists of an API provider functions, the CAPIF core functions and API Invoker.
32
33 .. image:: ./images/architectureCAPIF.png
34    :width: 500pt
35    :alt: High level functional architecture for the CAPIF (3GPP TS 23.222).
36
37 CAPIF Core function
38 ~~~~~~~~~~~~~~~~~~~
39
40 The CAPIF core functions support the API invokers to access the service APIs. It consists of the following capabilities:
41
42 * Authenticating the API invoker based on the identity and other information required for authentication of the API invoker;
43 * Supporting mutual authentication with the API invoker;
44 * Providing authorization for the API invoker prior to accessing the service API;
45 * Publishing, storing and supporting the discovery of service APIs information;
46 * Monitoring the service API invocations;
47 * Onboarding a new API invoker and offboarding an API invoker;
48 * Supports publishing, discovery of service APIs information with another CAPIF core function in CAPIF interconnection.
49
50 API Invoker
51 ~~~~~~~~~~~
52
53 The API invoker is the entity which invokes the CAPIF or service APIs, typically provided by a 3rd party application provider.
54
55 The API invoker supports the following capabilities:
56
57 * Triggering API invoker onboarding/offboarding;
58 * Supporting the authentication by providing the API invoker identity and other information required for authentication of the API invoker;
59 * Supporting mutual authentication with CAPIF;
60 * Obtaining the authorization prior to accessing the service API;
61 * Discovering service APIs information; and
62 * Invoking the service APIs.
63
64
65 API Provider functions
66 ~~~~~~~~~~~~~~~~~~~~~~
67
68 The API provider functions consists of:
69
70 * **API exposing function** is the provider of the service APIs and is also the service communication entry point of the service API to the API invokers. Provides access control, logging, charging, provides authentication and authorization support.
71 * **API publishing function** is responsible for the capability to publish the service API information of the API provider to the CAPIF core functions in order to enable the discovery of APIs by the API invoker.
72 * **API management function** is the entity which registers and maintains registration information of the API provider domain functions on the CAPIF core function.
73
74 CAPIF core function APIs
75 ************************
76
77 * **CAPIF_Discover_Service_API** API: This API enables the API invoker to communicate with the CAPIF core function to discover the published service API information.
78 * **CAPIF_Publish_Service_API** API: This API enables the API publishing function to communicate with the CAPIF core function to publish the service API information and manage the published service API information.
79 * **CAPIF_Events** API: This API enables the API subscribing entity to communicate with the CAPIF core function to subscribe to and unsubscribe from CAPIF events and receive subsequent notification of CAPIF events. This API is used for the subscription to and notifications of those CAPIF events that are not bound to any of the other CAPIF core function APIs.
80 * **CAPIF_API_Invoker_Management** API: This API enables the API invoker to communicate with the CAPIF core function to enroll as a registered user of CAPIF and manage the enrollment information.
81 * **CAPIF_Security** API:This API enables the API invoker to communicate with the CAPIF core function to authenticate and obtain authorization to access service APIs.
82 * **CAPIF_Monitoring** API: This API enables the API management function to communicate with the CAPIF core function to subscribe to and unsubscribe from CAPIF events related to monitoring and receive subsequent notification of CAPIF monitoring events.
83 * **CAPIF_Logging_API_Invocation** API: This API enables the API exposing function to communicate with the CAPIF core function to log the information related to service API invocation.
84 * **CAPIF_Auditing** API: This API enables the API management function to communicate with the CAPIF core function to retrieve the log information related to service API invocation.
85 * **CAPIF_Access_Control_Policy** API: This API enables the API exposing function to obtain the policy to perform access control on the service API invocations.
86 * **CAPIF_Routing_Info** API: This API enables the API exposing function to obtain the routing information to forward the API invocation to another API exposing function.
87 * **CAPIF_API_Provider_Management** API: This API enables the API Management Function to communicate with the CAPIF core function to register the API provider domain functions as authorized users of the CAPIF functionalities.
88
89 The table below lists the CAPIF Core Function APIs.
90
91 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
92 |     **Service Name**              | **Service Operations**       | **Operation Semantics**                      | **Consumer(s)**                                                                        |
93 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
94 | CAPIF_Discover_Service_API        | Discover_Service_API         | GET /allServiceAPIs                          | API Invoker, CAPIF core function                                                       |
95 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
96 | CAPIF_Publish_Service_API         | Publish_Service_API          | POST /{apfId}/service-apis                   | API Publishing Function, CAPIF core function                                           |
97 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
98 |                                   | Unpublish_Service_API        | DELETE /{apfId/service-apis/{serviceApiId}   | API Publishing Function, CAPIF core function                                           |
99 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
100 |                                   | Update_Service_API           | PUT /{apfId/service-apis/{serviceApiId}      | API Publishing Function, CAPIF core function                                           |
101 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
102 |                                   | Get_Service_API              | GET /{apfId}/service-apis                    | API Publishing Function, CAPIF core function                                           |
103 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
104 | CAPIF_Events_API                  | Subscribe_Event              | Subscribe/Notify                             | API Invoker, API Publishing Function, API Management Function, API Exposing Function   |
105 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
106 |                                   | Notify_Event                 | Subscribe/Notify                             | API Invoker, API Publishing Function, API Management Function, API Exposing Function   |
107 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
108 |                                   | Unsubscribe_Event            | Subscribe/Notify                             | API Invoker, API Publishing Function, API Management Function, API Exposing Function   |
109 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
110 | CAPIF_API_Invoker_Management_API  | Onboard_API_Invoker          | POST /onboardedInvokers                      | API Invoker                                                                            |
111 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
112 |                                   | Offboard_API_Invoker         | DELETE /onboardedInvokers/{onboardingId}     | API Invoker                                                                            |
113 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
114 |                                   | Notify_Onboarding_Completion | Subscribe/Notify                             | API Invoker                                                                            |
115 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
116 |                                   | Update_API_Invoker_Details   | PUT /onboardedInvokers/{onboardingId}        | API Invoker                                                                            |
117 |                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
118 |                                   | Notify_Update_Completion     | Subscribe/Notify                             | API Invoker                                                                            |
119 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
120 | CAPIF_Security_API                | Obtain_Security_Method       | PUT /trustedInvokers/{apiInvokerId}          | API Invoker                                                                            |
121 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
122 |                                   | Obtain_Authorization         | POST /securities/{securityId}/token          | API Invoker                                                                            |
123 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
124 |                                   | Obtain_API_Invoker_Info      | GET /trustedInvokers/{apiInvokerId}          | API exposing function                                                                  |
125 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
126 |                                   | Revoke_Authorization         | DELETE /trustedInvokers/{apiInvokerId}       | API exposing function                                                                  |
127 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
128 | CAPIF_API_Provider_Management_API | Register_API_Provider        | POST /registrations                          | API Management Function                                                                |
129 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
130 |                                   | Update_API_Provider          | PUT /registrations/{registrationId}          | API Management Function                                                                |
131 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
132 |                                   | Deregister_API_Provider      | DELETE /registrations/{registrationId}       | API Management Function                                                                |
133 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
134 | CAPIF_Monitoring_API              | Event operations             |                                              | API Management Function                                                                |
135 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
136 | CAPIF_Logging_API_Invocation_API  | Log_API_Invocation           | POST /{aefId}/logs                           | API exposing function                                                                  |
137 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
138 | CAPIF_Auditing_API                | Query_API_Invocation_Log     | GET /apiInvocationLogs                       | API management function                                                                |
139 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
140 | CAPIF_Access_Control_Policy_API   | Obtain_Access_Control_Policy | GET /accessControlPolicyList/{serviceApiId}  | API Exposing Function                                                                  |
141 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
142 | CAPIF_Routing_Info_API            | Obtain_Routing_Info          | GET /service-apis/{serviceApiId}             | API exposing function                                                                  |
143 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
144
145 Security in CAPIF
146 *****************
147
148 CAPIF establishes security requirements for all the interfaces defined in the specification. There are also security requirements that are applicable to all CAPIF entities, such as:
149
150 - CAPIF shall provide mechanisms to hide the topology of the PLMN trust domain from the API invokers accessing the service APIs from outside the PLMN trust domain.
151 - CAPIF shall provide mechanisms to hide the topology of the 3rd party API provider trust domain from the API invokers accessing the service APIs from outside the 3rd party API provider trust domain.
152 - CAPIF shall provide authorization mechanism for service APIs from the 3rd party API providers.
153 - CAPIF shall support a common security mechanism for all API implementations to provide confidentiality and integrity protection.
154
155 The image below shows the functional security model for CAPIF architecture. CAPIF-1, CAPIF-2, CAPIF-3, CAPIF-4, CAPIF-5 and CAPIF-7 are interfaces that lie within the PLMN trust domain while the CAPIF-1e , CAPIF-2e, CAPIF-3e, CAPIF-4e, CAPIF-5e and CAPIF-7e interfaces are CAPIF core and AEF access points for API Invokers outside of the PLMN trust domain.
156
157 .. image:: ./images/securitymodel.png
158    :width: 500pt
159    :alt: CAPIF functional security model (3GPP TS 33.122).
160
161 Authentication and authorization are required for both API invokers that lie within the PLMN trust domain and API invokers that lie outside of the PLMN trust domain. For an API invoker that is outside of the PLMN trust domain, the CAPIF core function in coordination with the API exposing function utilizes the CAPIF-1e, CAPIF-2e and the CAPIF-3 interfaces to onboard, authenticate and authorize the API invoker prior to granting access to CAPIF services.
162
163 Security procedures for API invoker onboarding
164 ==============================================
165
166 The API invoker and the CAPIF core function shall establish a secure session.
167 With a secure session established, the API Invoker sends an Onboard API Invoker Request message to the CAPIF core function. The Onboard API Invoker Request message carries an onboard credential obtained during pre-provisioning of the onboard enrolment information.
168
169 .. image:: ./images/Onboardingnewinvoker.svg
170    :alt: Procedure for API invoker onboarding
171
172 The CAPIF core function shall respond with an Onboard API invoker response message. The response shall include the CAPIF core function assigned API invoker ID, API invoker's certificate and the API invoker Onboard_Secret (generated by the CAPIF core function provided by keycloak).
173
174 Security method negotiation
175 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
176
177 The API invoker and the CAPIF core function shall negotiate a security method that shall be used by the API invoker and the API exposing function for CAPIF-2e interface authentication and protection.
178
179 As a pre-condition the API invoker must be onboarded with the CAPIF core function.
180
181 After successful mutual authentication on CAPIF-1e interface, the API invoker may send CAPIF-2/2e security capability information to the CAPIF core function in the Security Method Request message, indicating the list of security methods that it supports for each AEF.
182
183 The CAPIF core function shall select a security method to be used over CAPIF-2/2e reference point for each requested AEF, taking into account the information sent by the API invoker and send a Security Method Response message to the API invoker indicating the selected security method for each AEF.
184
185 API discovery
186 ~~~~~~~~~~~~~
187
188 After successful authentication between API invoker and CAPIF core function, the CAPIF core function shall decide whether the API invoker is authorized to perform discovery based on API invoker ID and discovery policy.
189
190 Postman
191 *******
192
193 A Postman collection has been included in this repo at sme/postman/CAPIF.postman_collection.json.
194
195 ***************
196 Service Manager
197 ***************
198
199 Service Manager, CAPIF and Kong
200 *******************************
201
202 Service Manager builds on CAPIF and depends on the Kong API Gateway. CAPIF stands for Common API Framework and it was developed by 3GPP to enable a unified Northbound API framework across 3GPP network functions, and to ensure that there is a single and harmonized approach for API development.
203 Among CAPIF's key features are the following.
204
205 * Register/deregister APIs
206 * Publishing Service APIs
207 * Onboarding/offboarding API invoker
208 * Discovery APIs
209 * CAPIF events subscription/notification
210 * Entity authentication/authorization
211 * Support for 3rd party domains i.e., allow 3rd party API providers to leverage the CAPIF framework
212 * Support interconnection between two CAPIF providers
213
214 Service Manager and CAPIF APIs
215 ******************************
216
217 CAPIF (Common API Framework) is defined in 3GPP TS 29.222. Service Manager implements a subset of the CAPIF APIs to provide the following APIs.
218
219 * Register/deregister APIs
220 * Publishing Service APIs
221 * Onboarding/offboarding API invoker
222 * Discovery APIs
223
224 If you only need the above APIs, then Service Manager is a plugin-in replacement for CAPIF.
225
226 CAPIF APIs implemented by Service Manager
227 *****************************************
228
229 * **CAPIF_API_Provider_Management** API: This API enables the API Management Function to communicate with the CAPIF core function to register the API provider domain functions.
230 * **CAPIF_Publish_Service_API** API:This API enables the API publishing function to communicate with the CAPIF core function to publish the service API information and manage the published service API information.
231 * **CAPIF_API_Invoker_Management** API: This API enables the API invoker to communicate with the CAPIF core function to enroll as a registered user of CAPIF and manage the enrollment information.
232 * **CAPIF_Discover_Service_API** API: This API enables the API invoker to communicate with the CAPIF core function to discover the published service API information.
233
234 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
235 |     **Service Name**              | **Service Operations**       | **Operation Semantics**                      | **Consumer(s)**                                                                        |
236 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
237 | CAPIF_API_Provider_Management_API | Register_API_Provider        | POST /registrations                          | API Management Function                                                                |
238 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
239 |                                   | Update_API_Provider          | PUT /registrations/{registrationId}          | API Management Function                                                                |
240 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
241 |                                   | Deregister_API_Provider      | DELETE /registrations/{registrationId}       | API Management Function                                                                |
242 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
243 | CAPIF_Publish_Service_API         | Publish_Service_API          | POST /{apfId}/service-apis                   | API Publishing Function, CAPIF core function                                           |
244 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
245 |                                   | Unpublish_Service_API        | DELETE /{apfId/service-apis/{serviceApiId}   | API Publishing Function, CAPIF core function                                           |
246 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
247 |                                   | Update_Service_API           | PUT /{apfId/service-apis/{serviceApiId}      | API Publishing Function, CAPIF core function                                           |
248 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
249 |                                   | Get_Service_API              | GET /{apfId}/service-apis                    | API Publishing Function, CAPIF core function                                           |
250 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
251 | CAPIF_API_Invoker_Management_API  | Onboard_API_Invoker          | POST /onboardedInvokers                      | API Invoker                                                                            |
252 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
253 |                                   | Offboard_API_Invoker         | DELETE /onboardedInvokers/{onboardingId}     | API Invoker                                                                            |
254 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
255 |                                   | Notify_Onboarding_Completion | Subscribe/Notify                             | API Invoker                                                                            |
256 +                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
257 |                                   | Update_API_Invoker_Details   | PUT /onboardedInvokers/{onboardingId}        | API Invoker                                                                            |
258 |                                   +------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
259 |                                   | Notify_Update_Completion     | Subscribe/Notify                             | API Invoker                                                                            |
260 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
261 | CAPIF_Discover_Service_API        | Discover_Service_API         | GET /allServiceAPIs                          | API Invoker, CAPIF core function                                                       |
262 +-----------------------------------+------------------------------+----------------------------------------------+----------------------------------------------------------------------------------------+
263
264 Generation of CAPIF OpenAPI Code
265 ********************************
266
267 * The CAPIF APIs are generated from the OpenAPI specifications provided by 3GPP.
268 * The generate.sh script downloads the specifications from 3GPP, fixes them and then generates the APIs.
269 * The specifications are downloaded from https://www.3gpp.org/ftp/Specs/archive/29_series.
270
271 Service Manager Integration with Kong
272 *************************************
273
274 * Service Manager is a Go implementation of a service that builds on CAPIF Core and integrates with Kong.
275 * When publishing a service through Service Manager, we create a Kong service and Kong route.
276 * The JSON element that we return in the response body is updated to point to the Kong data plane. Therefore, the API interface that we return from Service Discovery has the Kong host and port, and not the original service's host and port.
277 * The rApp can only access the Published function through Service Manager. It cannot access the Published function directly.
278 * We use Kong as a reverse proxy. Instead of calling the Publishing service directly, our Invoker's API request is proxied through Kong. This gives us the advantages of using a proxied service, such as providing caching and load balancing.
279 * When service invocations are routed through Kong, in an R1 SME scenario where services are selectively exposed to rApps, the Kong API gateway can be used to enforce R1 SME exposure & access. This can be achieved by restricting rApps to have access only to the Kong API gateway, and so only services exposed to the rApps through the API gateway can be accessed.
280
281 Service Manager Deployment
282 **************************
283
284 * We have a stand-alone deployment and a deployment as part of NONRTRIC.
285 * We use the NONRTRIC deployment from the Git repo at https://gerrit.o-ran-sc.org/r/admin/repos/it/dep.
286 * The stand-alone deployment is in this repo at sme/servicemanager/deploy. Please see the Service Manager README.
287 * The Service Manager configuration is stored in a config file, ``.env``.
288 * For both the stand-alone and it/dep deployments, ``.env`` is volume-mounted into the Docker container from a Kubernetes config map at container run-time.
289
290 Postman
291 *******
292 A Postman collection has been included in this repo at sme/postman/ServiceManager.postman_collection.json.