VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/HttpBootDxe/HttpBootDxe.h

Last change on this file was 108794, checked in by vboxsync, 2 weeks ago

Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643

  • Property svn:eol-style set to native
File size: 24.4 KB
Line 
1/** @file
2 UEFI HTTP boot driver's private data structure and interfaces declaration.
3
4Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
5(C) Copyright 2016 - 2020 Hewlett Packard Enterprise Development LP<BR>
6SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#ifndef __EFI_HTTP_BOOT_DXE_H__
11#define __EFI_HTTP_BOOT_DXE_H__
12
13#include <Uefi.h>
14
15#include <IndustryStandard/Http11.h>
16#include <IndustryStandard/Dhcp.h>
17
18//
19// Libraries
20//
21#include <Library/UefiBootServicesTableLib.h>
22#include <Library/UefiHiiServicesLib.h>
23#include <Library/UefiRuntimeServicesTableLib.h>
24#include <Library/MemoryAllocationLib.h>
25#include <Library/BaseLib.h>
26#include <Library/UefiLib.h>
27#include <Library/DevicePathLib.h>
28#include <Library/DebugLib.h>
29#include <Library/NetLib.h>
30#include <Library/HttpLib.h>
31#include <Library/HttpIoLib.h>
32#include <Library/HiiLib.h>
33#include <Library/PrintLib.h>
34#include <Library/DpcLib.h>
35
36//
37// UEFI Driver Model Protocols
38//
39#include <Protocol/DriverBinding.h>
40#include <Protocol/ComponentName2.h>
41#include <Protocol/ComponentName.h>
42
43//
44// Consumed Protocols
45//
46#include <Protocol/ServiceBinding.h>
47#include <Protocol/HiiConfigAccess.h>
48#include <Protocol/NetworkInterfaceIdentifier.h>
49#include <Protocol/Dhcp4.h>
50#include <Protocol/Dhcp6.h>
51#include <Protocol/Dns6.h>
52#include <Protocol/Http.h>
53#include <Protocol/Ip4Config2.h>
54#include <Protocol/Ip6Config.h>
55#include <Protocol/RamDisk.h>
56#include <Protocol/AdapterInformation.h>
57
58//
59// Produced Protocols
60//
61#include <Protocol/LoadFile.h>
62#include <Protocol/HttpBootCallback.h>
63
64//
65// Consumed Guids
66//
67#include <Guid/HttpBootConfigHii.h>
68
69//
70// Driver Version
71//
72#define HTTP_BOOT_DXE_VERSION 0xa
73
74//
75// Standard Media Types defined in
76// http://www.iana.org/assignments/media-types
77//
78#define HTTP_CONTENT_TYPE_APP_EFI "application/efi"
79#define HTTP_CONTENT_TYPE_APP_IMG "application/vnd.efi-img"
80#define HTTP_CONTENT_TYPE_APP_ISO "application/vnd.efi-iso"
81
82//
83// Protocol instances
84//
85extern EFI_DRIVER_BINDING_PROTOCOL gHttpBootDxeDriverBinding;
86extern EFI_COMPONENT_NAME2_PROTOCOL gHttpBootDxeComponentName2;
87extern EFI_COMPONENT_NAME_PROTOCOL gHttpBootDxeComponentName;
88
89//
90// Private data structure
91//
92typedef struct _HTTP_BOOT_PRIVATE_DATA HTTP_BOOT_PRIVATE_DATA;
93typedef struct _HTTP_BOOT_VIRTUAL_NIC HTTP_BOOT_VIRTUAL_NIC;
94
95typedef enum {
96 ImageTypeEfi,
97 ImageTypeVirtualCd,
98 ImageTypeVirtualDisk,
99 ImageTypeMax
100} HTTP_BOOT_IMAGE_TYPE;
101
102//
103// Include files with internal function prototypes
104//
105#include "HttpBootComponentName.h"
106#include "HttpBootDhcp4.h"
107#include "HttpBootDhcp6.h"
108#include "HttpBootImpl.h"
109#include "HttpBootSupport.h"
110#include "HttpBootClient.h"
111#include "HttpBootConfig.h"
112
113typedef union {
114 HTTP_BOOT_DHCP4_PACKET_CACHE Dhcp4;
115 HTTP_BOOT_DHCP6_PACKET_CACHE Dhcp6;
116} HTTP_BOOT_DHCP_PACKET_CACHE;
117
118struct _HTTP_BOOT_VIRTUAL_NIC {
119 UINT32 Signature;
120 EFI_HANDLE Controller;
121 EFI_HANDLE ImageHandle;
122 EFI_LOAD_FILE_PROTOCOL LoadFile;
123 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
124 HTTP_BOOT_PRIVATE_DATA *Private;
125};
126
127#define HTTP_BOOT_PRIVATE_DATA_FROM_CALLBACK_INFO(Callback) \
128 CR ( \
129 Callback, \
130 HTTP_BOOT_PRIVATE_DATA, \
131 CallbackInfo, \
132 HTTP_BOOT_PRIVATE_DATA_SIGNATURE \
133 )
134
135#define HTTP_BOOT_PRIVATE_DATA_FROM_CALLBACK_PROTOCOL(CallbackProtocol) \
136 CR ( \
137 CallbackProtocol, \
138 HTTP_BOOT_PRIVATE_DATA, \
139 LoadFileCallback, \
140 HTTP_BOOT_PRIVATE_DATA_SIGNATURE \
141 )
142
143struct _HTTP_BOOT_PRIVATE_DATA {
144 UINT32 Signature;
145 EFI_HANDLE Controller;
146
147 HTTP_BOOT_VIRTUAL_NIC *Ip4Nic;
148 HTTP_BOOT_VIRTUAL_NIC *Ip6Nic;
149
150 //
151 // Consumed children
152 //
153 EFI_HANDLE Ip6Child;
154 EFI_HANDLE Dhcp4Child;
155 EFI_HANDLE Dhcp6Child;
156 HTTP_IO HttpIo;
157 BOOLEAN HttpCreated;
158
159 //
160 // Consumed protocol
161 //
162 EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL *Nii;
163 EFI_IP6_PROTOCOL *Ip6;
164 EFI_IP4_CONFIG2_PROTOCOL *Ip4Config2;
165 EFI_IP6_CONFIG_PROTOCOL *Ip6Config;
166 EFI_DHCP4_PROTOCOL *Dhcp4;
167 EFI_DHCP6_PROTOCOL *Dhcp6;
168 EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
169
170 //
171 // Produced protocol
172 //
173 EFI_LOAD_FILE_PROTOCOL LoadFile;
174 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
175 UINT32 Id;
176 EFI_HTTP_BOOT_CALLBACK_PROTOCOL *HttpBootCallback;
177 EFI_HTTP_BOOT_CALLBACK_PROTOCOL LoadFileCallback;
178
179 //
180 // Data for the default HTTP Boot callback protocol
181 //
182 UINT64 FileSize;
183 UINT64 ReceivedSize;
184 UINT32 Percentage;
185
186 //
187 // Data for the server to authenticate the client
188 //
189 CHAR8 *AuthData;
190 CHAR8 *AuthScheme;
191
192 //
193 // HII callback info block
194 //
195 HTTP_BOOT_FORM_CALLBACK_INFO CallbackInfo;
196
197 //
198 // Mode data
199 //
200 BOOLEAN UsingIpv6;
201 BOOLEAN Started;
202 EFI_IP_ADDRESS StationIp;
203 EFI_IP_ADDRESS SubnetMask;
204 EFI_IP_ADDRESS GatewayIp;
205 EFI_IP_ADDRESS ServerIp;
206 UINT16 Port;
207 UINT32 DnsServerCount;
208 EFI_IP_ADDRESS *DnsServerIp;
209
210 //
211 // The URI string attempt to download through HTTP, may point to
212 // the memory in cached DHCP offer, or to the memory in FilePathUri.
213 //
214 CHAR8 *BootFileUri;
215 VOID *BootFileUriParser;
216 UINTN BootFileSize;
217 UINTN PartialTransferredSize;
218 CHAR8 *LastModifiedOrEtag;
219 BOOLEAN NoGateway;
220 HTTP_BOOT_IMAGE_TYPE ImageType;
221
222 //
223 // URI string extracted from the input FilePath parameter.
224 //
225 CHAR8 *FilePathUri;
226 VOID *FilePathUriParser;
227
228 //
229 // Cached HTTP data
230 //
231 LIST_ENTRY CacheList;
232
233 //
234 // Cached DHCP offer
235 //
236 // OfferIndex records the index of DhcpOffer[] buffer, and OfferCount records the num of each type of offer.
237 //
238 // It supposed that
239 //
240 // OfferNum: 8
241 // OfferBuffer: [ProxyNameUri, DhcpNameUri, DhcpIpUri, ProxyNameUri, ProxyIpUri, DhcpOnly, DhcpIpUri, DhcpNameUriDns]
242 // (OfferBuffer is 0-based.)
243 //
244 // And assume that (DhcpIpUri is the first priority actually.)
245 //
246 // SelectIndex: 5
247 // SelectProxyType: HttpOfferTypeProxyIpUri
248 // (SelectIndex is 1-based, and 0 means no one is selected.)
249 //
250 // So it should be
251 //
252 // DhcpIpUri DhcpNameUriDns DhcpDns DhcpOnly ProxyNameUri ProxyIpUri DhcpNameUri
253 // OfferCount: [ 2, 1, 0, 1, 2, 1, 1]
254 //
255 // OfferIndex: {[ 2, 7, 0, 5, 0, *4, 1]
256 // [ 6, 0, 0, 0, 3, 0, 0]
257 // [ 0, 0, 0, 0, 0, 0, 0]
258 // ... ]}
259 // (OfferIndex is 0-based.)
260 //
261 //
262 UINT32 SelectIndex;
263 UINT32 SelectProxyType;
264 HTTP_BOOT_DHCP_PACKET_CACHE OfferBuffer[HTTP_BOOT_OFFER_MAX_NUM];
265 UINT32 OfferNum;
266 UINT32 OfferCount[HttpOfferTypeMax];
267 UINT32 OfferIndex[HttpOfferTypeMax][HTTP_BOOT_OFFER_MAX_NUM];
268};
269
270#define HTTP_BOOT_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('H', 'B', 'P', 'D')
271#define HTTP_BOOT_VIRTUAL_NIC_SIGNATURE SIGNATURE_32 ('H', 'B', 'V', 'N')
272#define HTTP_BOOT_PRIVATE_DATA_FROM_LOADFILE(a) CR (a, HTTP_BOOT_PRIVATE_DATA, LoadFile, HTTP_BOOT_PRIVATE_DATA_SIGNATURE)
273#define HTTP_BOOT_PRIVATE_DATA_FROM_ID(a) CR (a, HTTP_BOOT_PRIVATE_DATA, Id, HTTP_BOOT_PRIVATE_DATA_SIGNATURE)
274#define HTTP_BOOT_VIRTUAL_NIC_FROM_LOADFILE(a) CR (a, HTTP_BOOT_VIRTUAL_NIC, LoadFile, HTTP_BOOT_VIRTUAL_NIC_SIGNATURE)
275extern EFI_LOAD_FILE_PROTOCOL gHttpBootDxeLoadFile;
276
277/**
278 Tests to see if this driver supports a given controller. If a child device is provided,
279 it further tests to see if this driver supports creating a handle for the specified child device.
280
281 This function checks to see if the driver specified by This supports the device specified by
282 ControllerHandle. Drivers will typically use the device path attached to
283 ControllerHandle and/or the services from the bus I/O abstraction attached to
284 ControllerHandle to determine if the driver supports ControllerHandle. This function
285 may be called many times during platform initialization. In order to reduce boot times, the tests
286 performed by this function must be very small, and take as little time as possible to execute. This
287 function must not change the state of any hardware devices, and this function must be aware that the
288 device specified by ControllerHandle may already be managed by the same driver or a
289 different driver. This function must match its calls to AllocatePages() with FreePages(),
290 AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().
291 Because ControllerHandle may have been previously started by the same driver, if a protocol is
292 already in the opened state, then it must not be closed with CloseProtocol(). This is required
293 to guarantee the state of ControllerHandle is not modified by this function.
294
295 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
296 @param[in] ControllerHandle The handle of the controller to test. This handle
297 must support a protocol interface that supplies
298 an I/O abstraction to the driver.
299 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
300 parameter is ignored by device drivers, and is optional for bus
301 drivers. For bus drivers, if this parameter is not NULL, then
302 the bus driver must determine if the bus controller specified
303 by ControllerHandle and the child controller specified
304 by RemainingDevicePath are both supported by this
305 bus driver.
306
307 @retval EFI_SUCCESS The device specified by ControllerHandle and
308 RemainingDevicePath is supported by the driver specified by This.
309 @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and
310 RemainingDevicePath is already being managed by the driver
311 specified by This.
312 @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and
313 RemainingDevicePath is already being managed by a different
314 driver or an application that requires exclusive access.
315 Currently not implemented.
316 @retval EFI_UNSUPPORTED The device specified by ControllerHandle and
317 RemainingDevicePath is not supported by the driver specified by This.
318**/
319EFI_STATUS
320EFIAPI
321HttpBootIp4DxeDriverBindingSupported (
322 IN EFI_DRIVER_BINDING_PROTOCOL *This,
323 IN EFI_HANDLE ControllerHandle,
324 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
325 );
326
327/**
328 Starts a device controller or a bus controller.
329
330 The Start() function is designed to be invoked from the EFI boot service ConnectController().
331 As a result, much of the error checking on the parameters to Start() has been moved into this
332 common boot service. It is legal to call Start() from other locations,
333 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
334 1. ControllerHandle must be a valid EFI_HANDLE.
335 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned
336 EFI_DEVICE_PATH_PROTOCOL.
337 3. Prior to calling Start(), the Supported() function for the driver specified by This must
338 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
339
340 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
341 @param[in] ControllerHandle The handle of the controller to start. This handle
342 must support a protocol interface that supplies
343 an I/O abstraction to the driver.
344 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
345 parameter is ignored by device drivers, and is optional for bus
346 drivers. For a bus driver, if this parameter is NULL, then handles
347 for all the children of Controller are created by this driver.
348 If this parameter is not NULL and the first Device Path Node is
349 not the End of Device Path Node, then only the handle for the
350 child device specified by the first Device Path Node of
351 RemainingDevicePath is created by this driver.
352 If the first Device Path Node of RemainingDevicePath is
353 the End of Device Path Node, no child handle is created by this
354 driver.
355
356 @retval EFI_SUCCESS The device was started.
357 @retval EFI_DEVICE_ERROR The device could not be started due to a device error.Currently not implemented.
358 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
359 @retval Others The driver failed to start the device.
360
361**/
362EFI_STATUS
363EFIAPI
364HttpBootIp4DxeDriverBindingStart (
365 IN EFI_DRIVER_BINDING_PROTOCOL *This,
366 IN EFI_HANDLE ControllerHandle,
367 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
368 );
369
370/**
371 Stops a device controller or a bus controller.
372
373 The Stop() function is designed to be invoked from the EFI boot service DisconnectController().
374 As a result, much of the error checking on the parameters to Stop() has been moved
375 into this common boot service. It is legal to call Stop() from other locations,
376 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
377 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this
378 same driver's Start() function.
379 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid
380 EFI_HANDLE. In addition, all of these handles must have been created in this driver's
381 Start() function, and the Start() function must have called OpenProtocol() on
382 ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.
383
384 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
385 @param[in] ControllerHandle A handle to the device being stopped. The handle must
386 support a bus specific I/O protocol for the driver
387 to use to stop the device.
388 @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer.
389 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL
390 if NumberOfChildren is 0.
391
392 @retval EFI_SUCCESS The device was stopped.
393 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
394
395**/
396EFI_STATUS
397EFIAPI
398HttpBootIp4DxeDriverBindingStop (
399 IN EFI_DRIVER_BINDING_PROTOCOL *This,
400 IN EFI_HANDLE ControllerHandle,
401 IN UINTN NumberOfChildren,
402 IN EFI_HANDLE *ChildHandleBuffer OPTIONAL
403 );
404
405/**
406 Tests to see if this driver supports a given controller. If a child device is provided,
407 it further tests to see if this driver supports creating a handle for the specified child device.
408
409 This function checks to see if the driver specified by This supports the device specified by
410 ControllerHandle. Drivers will typically use the device path attached to
411 ControllerHandle and/or the services from the bus I/O abstraction attached to
412 ControllerHandle to determine if the driver supports ControllerHandle. This function
413 may be called many times during platform initialization. In order to reduce boot times, the tests
414 performed by this function must be very small, and take as little time as possible to execute. This
415 function must not change the state of any hardware devices, and this function must be aware that the
416 device specified by ControllerHandle may already be managed by the same driver or a
417 different driver. This function must match its calls to AllocatePages() with FreePages(),
418 AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().
419 Because ControllerHandle may have been previously started by the same driver, if a protocol is
420 already in the opened state, then it must not be closed with CloseProtocol(). This is required
421 to guarantee the state of ControllerHandle is not modified by this function.
422
423 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
424 @param[in] ControllerHandle The handle of the controller to test. This handle
425 must support a protocol interface that supplies
426 an I/O abstraction to the driver.
427 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
428 parameter is ignored by device drivers, and is optional for bus
429 drivers. For bus drivers, if this parameter is not NULL, then
430 the bus driver must determine if the bus controller specified
431 by ControllerHandle and the child controller specified
432 by RemainingDevicePath are both supported by this
433 bus driver.
434
435 @retval EFI_SUCCESS The device specified by ControllerHandle and
436 RemainingDevicePath is supported by the driver specified by This.
437 @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and
438 RemainingDevicePath is already being managed by the driver
439 specified by This.
440 @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and
441 RemainingDevicePath is already being managed by a different
442 driver or an application that requires exclusive access.
443 Currently not implemented.
444 @retval EFI_UNSUPPORTED The device specified by ControllerHandle and
445 RemainingDevicePath is not supported by the driver specified by This.
446**/
447EFI_STATUS
448EFIAPI
449HttpBootIp6DxeDriverBindingSupported (
450 IN EFI_DRIVER_BINDING_PROTOCOL *This,
451 IN EFI_HANDLE ControllerHandle,
452 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
453 );
454
455/**
456 Starts a device controller or a bus controller.
457
458 The Start() function is designed to be invoked from the EFI boot service ConnectController().
459 As a result, much of the error checking on the parameters to Start() has been moved into this
460 common boot service. It is legal to call Start() from other locations,
461 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
462 1. ControllerHandle must be a valid EFI_HANDLE.
463 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned
464 EFI_DEVICE_PATH_PROTOCOL.
465 3. Prior to calling Start(), the Supported() function for the driver specified by This must
466 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
467
468 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
469 @param[in] ControllerHandle The handle of the controller to start. This handle
470 must support a protocol interface that supplies
471 an I/O abstraction to the driver.
472 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
473 parameter is ignored by device drivers, and is optional for bus
474 drivers. For a bus driver, if this parameter is NULL, then handles
475 for all the children of Controller are created by this driver.
476 If this parameter is not NULL and the first Device Path Node is
477 not the End of Device Path Node, then only the handle for the
478 child device specified by the first Device Path Node of
479 RemainingDevicePath is created by this driver.
480 If the first Device Path Node of RemainingDevicePath is
481 the End of Device Path Node, no child handle is created by this
482 driver.
483
484 @retval EFI_SUCCESS The device was started.
485 @retval EFI_DEVICE_ERROR The device could not be started due to a device error.Currently not implemented.
486 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
487 @retval Others The driver failed to start the device.
488
489**/
490EFI_STATUS
491EFIAPI
492HttpBootIp6DxeDriverBindingStart (
493 IN EFI_DRIVER_BINDING_PROTOCOL *This,
494 IN EFI_HANDLE ControllerHandle,
495 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
496 );
497
498/**
499 Stops a device controller or a bus controller.
500
501 The Stop() function is designed to be invoked from the EFI boot service DisconnectController().
502 As a result, much of the error checking on the parameters to Stop() has been moved
503 into this common boot service. It is legal to call Stop() from other locations,
504 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
505 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this
506 same driver's Start() function.
507 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid
508 EFI_HANDLE. In addition, all of these handles must have been created in this driver's
509 Start() function, and the Start() function must have called OpenProtocol() on
510 ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.
511
512 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
513 @param[in] ControllerHandle A handle to the device being stopped. The handle must
514 support a bus specific I/O protocol for the driver
515 to use to stop the device.
516 @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer.
517 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL
518 if NumberOfChildren is 0.
519
520 @retval EFI_SUCCESS The device was stopped.
521 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
522
523**/
524EFI_STATUS
525EFIAPI
526HttpBootIp6DxeDriverBindingStop (
527 IN EFI_DRIVER_BINDING_PROTOCOL *This,
528 IN EFI_HANDLE ControllerHandle,
529 IN UINTN NumberOfChildren,
530 IN EFI_HANDLE *ChildHandleBuffer OPTIONAL
531 );
532
533#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette