WO2013162208A1 - Scalable and secure application resource management and access control for multicore operating systems - Google Patents

Scalable and secure application resource management and access control for multicore operating systems Download PDF

Info

Publication number
WO2013162208A1
WO2013162208A1 PCT/KR2013/003295 KR2013003295W WO2013162208A1 WO 2013162208 A1 WO2013162208 A1 WO 2013162208A1 KR 2013003295 W KR2013003295 W KR 2013003295W WO 2013162208 A1 WO2013162208 A1 WO 2013162208A1
Authority
WO
WIPO (PCT)
Prior art keywords
resources
application
trusted
resource
core
Prior art date
Application number
PCT/KR2013/003295
Other languages
French (fr)
Inventor
Daniel Waddington
Chen TIAN
Original Assignee
Samsung Electronics Co., Ltd.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Priority claimed from US13/648,157 external-priority patent/US9098726B2/en
Application filed by Samsung Electronics Co., Ltd. filed Critical Samsung Electronics Co., Ltd.
Publication of WO2013162208A1 publication Critical patent/WO2013162208A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/50Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
    • G06F21/52Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems during program execution, e.g. stack integrity ; Preventing unwanted data erasure; Buffer overflow
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/70Protecting specific internal or peripheral components, in which the protection of a component leads to protection of the entire computer
    • G06F21/71Protecting specific internal or peripheral components, in which the protection of a component leads to protection of the entire computer to assure secure computing or processing of information
    • G06F21/74Protecting specific internal or peripheral components, in which the protection of a component leads to protection of the entire computer to assure secure computing or processing of information operating in dual or compartmented mode, i.e. at least one secure mode
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/468Specific access rights for resources, e.g. using capability register

Definitions

  • the present invention is generally related to trusted management of resources in a multi-core or many-core processor
  • the role of the operating system (OS) in a computing system is to manage resources in the underlying hardware platform, and expose these resources to the application through software APIs.
  • Examples of resources managed by the OS include virtual and physical memory, CPUs/processor cores (tasks and threads), IO devices (expansion cards) and interrupts (IRQs, ICUs).
  • OS operating system
  • ICUs interrupts
  • an OS that is used for real-time sensor management is structured differently from an OS that is being used in a desktop PC workstation.
  • a real-time OS incorporates strict resource management with the primary concern of ensuring that computation and IO can be achieved within well-defined temporal bounds.
  • Applications that are deployed on RTOS e.g., avionics systems, health devices, energy management systems
  • CPU e.g., Worse Case Execution Time - WCET
  • memory e.g. potential stack and heap memory size
  • State-of-the-art OSs do not do well managing multiple applications that have different roles i.e., they are not multi-role.
  • Unsafe resources Program code that is running in kernel-mode has privileges necessary to obtain access to all resources in the system, including interrupts and I/O memory these can be termed “unsafe resources” since misuse of them can result in total system failure.
  • user-level code generally only has permission to access “safe resources” such as heap memory, threads, processes etc.
  • FIG. 1 illustrates an exemplary many-core or multi-core processor system 100 having a set of processor cores and electrical signal connections to external memories, in accordance with an embodiment of the invention.
  • Each core generally corresponds to a CPU with associated hardware.
  • the OS includes a kernel (monolithic or microkernel) above the hardware layer, any necessary middleware, and software applications.
  • Software applications are provided with a trusted manifest specifying resource quotas and access control information (with respect to software services) for the application.
  • This trusted manifest is used for resource management during runtime of the application. Applications which do not have a trusted manifest may be denied access to resources and/or software services. Additionally, fine grained resource control may be based on the trusted manifests.
  • a set of resource managers are provided according to a hierarchy, including at least one level. Applications are denied direct access to the kernel and to the root of the resource management trust chain. Individual resource managers are delegated the task of checking the trusted manifest of individual applications, and managing resource access by applications
  • the components, process steps, and/or data structures may be implemented using various types of OSs, programming languages, computing platforms, computer programs, and/or general purpose machines.
  • the present invention may also be tangibly embodied as a set of computer instructions stored on a computer readable medium, such as a memory device.
  • Figure 1 illustrates an exemplary system including multiple processing cores in accordance with an embodiment of the present invention.
  • FIG. 2 illustrates resource management using resource managers in accordance with an embodiment of the present invention.
  • FIG. 3 illustrates additional aspects of resource management in accordance with an embodiment of the present invention.
  • FIG. 1 illustrates an exemplary many-core or multi-core processor system 100 having a set of processor cores and electrical signal connections to external memories, in accordance with an embodiment of the invention.
  • Each core generally corresponds to a CPU with associated hardware.
  • the OS includes a kernel (monolithic or microkernel) above the hardware layer, any necessary middleware, and software applications.
  • the number of processors in Figure 1 is arbitrary, as indicated by the dots between cores, as is the external memory configuration.
  • contention is interference caused by concurrent access to the same resource, causing a delay due to serialization.
  • Crosstalk is indirect interference caused by access to separate resources resulting from hidden dependencies in the system. Contention and crosstalk affect a system’s ability to deliver consistent Quality-of-Service (QoS).
  • QoS Quality-of-Service
  • an application 112 includes an attached Certified Access-control and Resource Manifest (CARM) 114 to establish a trusted specification of potential resources that are required by the application as well as to an entity or entities managing resources within the system 100.
  • CARM Certified Access-control and Resource Manifest
  • the CARM may be written in a language such as XML, compressed, signed, and attached (e.g. as a special binary file section) as a manifest. The CARM thus improves security and resource management.
  • the CARM could be used with either a traditional (monolithic) kernel or a microkernel environment in order to improve resource management.
  • a microkernel is the preferred embodiment due to its decentralized architecture.
  • Figure 2 illustrates a microkernel and application level view of the operation of the system 100 based on how software applications access resources. Referring to Figure 2, software applications run on the system. An individual processing thread of an application may require a resource that the OS manages, where examples of a resource include a processor (e.g. a time slices of the cores), memory (e.g., I/O memory, heap memory, stack memory or cache memory), on chip, hardware device, software services, or other resources.
  • a processor e.g. a time slices of the cores
  • memory e.g., I/O memory, heap memory, stack memory or cache memory
  • resource management may include controlling allocation of kernel objects (e.g., threads, semaphores, IPC gates), as well as resources used for communication (e.g., GPIO, IO APIC, PCI/ISA/bus channel).
  • kernel objects e.g., threads, semaphores, IPC gates
  • resources used for communication e.g., GPIO, IO APIC, PCI/ISA/bus channel.
  • An individual application 212-A or 212-B may also use its corresponding CARM to establish trust with a resource manager 208, and to also specify potential resource demand by the application.
  • the CARM 214 is a secure (digitally signed) specification defining resource and access privileges of the associated application. As illustrated in the figures, in one embodiment, there is at least one level of hierarchy, although more generally, there may be more than one level of hierarchy. In one embodiment, one of the resource managers is an end-system manager 206.
  • the kernel and resource managers are part of a trusted computing base (TCB) of the platform.
  • the resource managers do not share the same address space (different memory protection domains).
  • Each resource manager is preferably isolated in a separate process (thus the design lends itself to microkernel architectures).
  • the resource managers 208 isolate applications from global resource management and from direct access to the kernel.
  • the end-system resource manager 206 may be designated as a system wide entity to act as the root of the resource management tree, and be responsible for the highest level of resource coordination and partitioning between the resource managers 208 and delegate the management of resource chunks to the resource managers 208.
  • the end-system resource manager 206 may instantiate the other resource manager 208 at boot time. Applications may also be denied direct access to the end-system resource manager 206 to further improve security of the process.
  • Coarse resource management may be performed at a kernel level.
  • Each resource manager is part of a trusted computing base in that it is: 1) trusted to (a) not violate/exceed quotas and access controls defined by an application’s CARM, and (b) prevent attempts by an application to cause denial-of-service in other applications (e.g., by throttling requests). It is the responsibility of the resource manager to manage the application’s access to resources according to defined quotas. It is the responsibility of the resource manager to prevent or deny access to other software services in the system according to defined privileges.
  • the resource managers 208 provide APIs to the applications 212 in order to reserve, access and free resources. Only resource managers 208 have the necessary privileges to request resources from the OS kernel. That is, individual applications do not have sufficient privileges to directly access the kernel.
  • the kernel will refuse direct requests from untrusted entities such as the applications 212. This permits each resource manger 208 to interact directly with a microkernel to request resources, thus improving security and also manage resources.
  • a resource manager 208 checks the CARM of an application before granting access to resources and/or services, and an application not having a CARM would be rejected service by a resource manager.
  • resource management in each resource manager is decentralized so that resources that have non-uniform access properties (e.g., memory, CPUs) can be separated out.
  • each resource manager maintains a number of threads of execution that redirect resource requests to different Resource Allocators (RAs).
  • RAs exist for each type of resource in the system (thread, process, memory, IPC gate, semaphore, IRQ objects, and ICU objects). They manage a strict quota of resources that is provisioned to the resource manager by the end-system resource manager during start-up.
  • Figure 3 provides another view at a kernel level showing a kernel 304, data structures 306 in the kernel to support resource managers 308, individual resource managers 308 with associated local limited version of supporting data structures (DS) for the resource managers, and resources 302.
  • DS data structures
  • the resource managers provide an approach that is scalable and secure in a decentralized design that supports multi-core and many-core processor systems, reduces the potential for crosstalk between applications, and provides fine-grained control of resource accounting and access control. Since the number of resource managers can be increased if needed, the design id inherently scalable. Additionally, the use of the CARM permits resource accounting and improved access control.
  • the CARM permits fine-grained definition and resource control to be implemented at runtime by providing guidance on what resources the application actually requires at runtime under normal (acceptable) conditions. Any attempt by an application to access more resources that are defined, or access software services that are not defined, will be contained. A specific situation that may lead to such a scenario is the execution of an erroneous application or a malicious application (e.g., software virus).
  • the resource managers act as trusted proxies.
  • This hierarchical arrangement of trusted proxies provide a scalable means to manage access control to the kernel.
  • the use of trusted proxies to prevent direct access of applications to centralized system services e.g., the kernel) prevents application quality of service (QoS) cross-talk, and may also prevent denial-of-service attacks by an application on the system.
  • QoS quality of service
  • system resources are divided between resource managers. Resources can be exchanged between managers in the advent of resource shortage by a specific manager. Load-balancing can be implemented either between peer managers or via a parent manager.
  • Resource managers are preferably multithreaded so that threads executing on multiple cores can invoke the services of the resource manager without communicating across microprocessor cores (same-core communications are in the general case higher performing that cross-core communications).
  • the application’s CARM is a digitally signed resource/permissions specification that is attached to the application (e.g., as a special binary file section). During the loading of the application, the attached CARM is made accessible to the resource manager that is associated with the application. The CARM digital signature is verified to ensure authenticity of the manifest.
  • an application may have a fixed assignment to a resource manager, more generally, more than one application may be assigned to a resource manager. It will also be understood the allocation may be made by various factors, such as: based on which resources a resource manager has been authorized to provide access to, and/or for the situation that a resource manager is delegated control over only a limited set of resources.
  • the CARM specifies what resources (e.g., device, memory bank), and how much of the resource (i.e., a quota), an application is “allowed” to request.
  • resources e.g., device, memory bank
  • a quota how much of the resource
  • CARMs specify resource quotas (e.g., CPU, memory), and may also specify service access information (e.g., Real-time Clock) for each application. Because the CARM is signed (and thus authenticated), resource managers can enable access/allocate resources according to the CARM specification. Additionally, the CARM may also include incorporation of both wildcard specifications (e.g., IO port range), as well as indirect specifications (e.g., IO memory used by device X).
  • wildcard specifications e.g., IO port range
  • indirect specifications e.g., IO memory used by device X.
  • the CARM may be encapsulated as part of the application/library binary image using public/private key encryption or digital signing.
  • a typical embodiment would use a structured data format such as XML.
  • each CARM is preferably digitally signed.
  • application developers have their CARMs signed by a trusted third party, or the system vendor.
  • a prototype used compressed XML as the data format for the resource manifest.
  • For digital signing, using a public/private key encryption scheme is an obvious choice.
  • Other data format may also be used for the CARM.
  • the CARM can provide a specification of both access control (i.e., what services can be invoked by the application) and of the resource quotas.
  • the exact syntax and content of specification is not specific to these examples.
  • An exemplary implementation would include a flexible hierarchical data format (such as XML) that is able to incorporate wildcard (resource subsets) and other more complex definitions.
  • the CARM specification may also include indirect specifications for example, the above excerpt includes granting access to the physical memory regions that are reported by the Peripheral Component Interconnect (PCI) configuration sub-system (since the application cannot predict in advance what these regions would be).
  • PCI configuration space access is incorporated into the TCB either as part of the Resource Manager or as part of an additional trusted entity.
  • a suitable implementation would have to provide user-level resource managers that can interact with the kernel on behalf of an application. This might require modifications to existing kernel APIs to support such “delegated calls”. An example would be that a resource manager would be able to request memory allocation from the kernel and pass this allocation to the application. Access Control Lists (ACLs), or other access control measures, would also need to be put in place in order to prevent applications making invocations on the kernel directly.
  • ACLs Access Control Lists

Abstract

An architecture for multi-core and many-core processor systems includes a set of resource managers having a hierarchy of at least one level. The resource managers act as trusted proxies for the operating system (OS) kernel to manage resources for applications. The application may include a trusted secure specification defining resource and access privileges of the associated application.

Description

SCALABLE AND SECURE APPLICATION RESOURCE MANAGEMENT AND ACCESS CONTROL FOR MULTICORE OPERATING SYSTEMS
The present invention is generally related to trusted management of resources in a multi-core or many-core processor
The role of the operating system (OS) in a computing system is to manage resources in the underlying hardware platform, and expose these resources to the application through software APIs. Examples of resources managed by the OS include virtual and physical memory, CPUs/processor cores (tasks and threads), IO devices (expansion cards) and interrupts (IRQs, ICUs). Within the context of multi-core and many-core processors, it is the OS’s responsibility to manage concurrent access to shared resources, both with respect to serialization (e.g., through lock protection) and multiplexing (e.g., scheduling).
For example, an OS that is used for real-time sensor management is structured differently from an OS that is being used in a desktop PC workstation. A real-time OS (RTOS) incorporates strict resource management with the primary concern of ensuring that computation and IO can be achieved within well-defined temporal bounds. Applications that are deployed on RTOS (e.g., avionics systems, health devices, energy management systems) require extensive analysis of the resources they require, including detailed calculation of CPU (e.g., Worse Case Execution Time - WCET) and memory (e.g. potential stack and heap memory size). That is, successful operation relies upon up-front allocation of resources prior to deployment. When accurate prediction of application resource requirements cannot be achieved, the system designer must over-allocate resources, which can potentially result in waste.
Thus, in such an OS, making guarantees with respect to time is generally not possible resources are often over-committed and the exact QoS (Quality-of-Service) is not deterministic and therefore cannot be readily predicted.
State-of-the-art OSs do not do well managing multiple applications that have different roles i.e., they are not multi-role.
This is primarily because of the fundamental differences in the underlying resource management model. In mainstream OSs, such as Linux, Windows and Solaris , applications are free to request resources on demand. Furthermore, permission to request resources from the system is implicitly given to all applications for example, all applications are free to create threads and request allocation of memory.
Program code that is running in kernel-mode has privileges necessary to obtain access to all resources in the system, including interrupts and I/O memory these can be termed “unsafe resources” since misuse of them can result in total system failure. Alternatively, user-level code generally only has permission to access “safe resources” such as heap memory, threads, processes etc.
Much of the functionality that traditionally resides in the monolithic kernel (e.g., networking, IO) is moved into the user space. So, a problem that naturally arises is that prior art techniques are inadequate to manage access of a microkernel-based OS and permissions to resources in order to maintain integrity of the system.
Particularly, they lend themselves to designs that decentralize system services such as memory management, page-faulting handling, device IO and so forth. As the compute capability for devices increases (reaching 100-1000 cores in the next 10 years), the potential for devices to perform multi-role functions also become apparent. However, parallel processors bring with them the need to scale the OS so that applications executing on multiple cores can interact with the OS, without interfering with each other, or having performance degraded as a result of forced serialized access. Thus, another problem arises because of the issues in performing resource management scheme that is scalable, and safely meets the needs of multi-core and many-core systems.
The present invention is directed to improved resource management in a computing system, particularly for many-core or multi-core processor systems. Figure 1 illustrates an exemplary many-core or multi-core processor system 100 having a set of processor cores and electrical signal connections to external memories, in accordance with an embodiment of the invention. Each core generally corresponds to a CPU with associated hardware. The OS includes a kernel (monolithic or microkernel) above the hardware layer, any necessary middleware, and software applications.
Software applications are provided with a trusted manifest specifying resource quotas and access control information (with respect to software services) for the application. This trusted manifest is used for resource management during runtime of the application. Applications which do not have a trusted manifest may be denied access to resources and/or software services. Additionally, fine grained resource control may be based on the trusted manifests.
In one embodiment, a set of resource managers are provided according to a hierarchy, including at least one level. Applications are denied direct access to the kernel and to the root of the resource management trust chain. Individual resource managers are delegated the task of checking the trusted manifest of individual applications, and managing resource access by applications
In accordance with the present invention, the components, process steps, and/or data structures may be implemented using various types of OSs, programming languages, computing platforms, computer programs, and/or general purpose machines. The present invention may also be tangibly embodied as a set of computer instructions stored on a computer readable medium, such as a memory device.
Figure 1 illustrates an exemplary system including multiple processing cores in accordance with an embodiment of the present invention.
Figure 2 illustrates resource management using resource managers in accordance with an embodiment of the present invention.
Figure 3 illustrates additional aspects of resource management in accordance with an embodiment of the present invention.
Figure 1 illustrates an exemplary many-core or multi-core processor system 100 having a set of processor cores and electrical signal connections to external memories, in accordance with an embodiment of the invention. Each core generally corresponds to a CPU with associated hardware. The OS includes a kernel (monolithic or microkernel) above the hardware layer, any necessary middleware, and software applications.
The number of processors in Figure 1 is arbitrary, as indicated by the dots between cores, as is the external memory configuration. In a many-core or multi-core processing system, there are multiple threads of execution resulting in various resource management concerns. For example, in multi-core and many-core processors, contention is interference caused by concurrent access to the same resource, causing a delay due to serialization. Crosstalk is indirect interference caused by access to separate resources resulting from hidden dependencies in the system. Contention and crosstalk affect a system’s ability to deliver consistent Quality-of-Service (QoS).
In accordance with an embodiment of an invention, an application 112 includes an attached Certified Access-control and Resource Manifest (CARM) 114 to establish a trusted specification of potential resources that are required by the application as well as to an entity or entities managing resources within the system 100. For example, the CARM may be written in a language such as XML, compressed, signed, and attached (e.g. as a special binary file section) as a manifest. The CARM thus improves security and resource management.
The CARM could be used with either a traditional (monolithic) kernel or a microkernel environment in order to improve resource management. A microkernel is the preferred embodiment due to its decentralized architecture. Figure 2 illustrates a microkernel and application level view of the operation of the system 100 based on how software applications access resources. Referring to Figure 2, software applications run on the system. An individual processing thread of an application may require a resource that the OS manages, where examples of a resource include a processor (e.g. a time slices of the cores), memory (e.g., I/O memory, heap memory, stack memory or cache memory), on chip, hardware device, software services, or other resources. As other examples of resource management, resource management may include controlling allocation of kernel objects (e.g., threads, semaphores, IPC gates), as well as resources used for communication (e.g., GPIO, IO APIC, PCI/ISA/bus channel).
An individual application 212-A or 212-B may also use its corresponding CARM to establish trust with a resource manager 208, and to also specify potential resource demand by the application. The CARM 214 is a secure (digitally signed) specification defining resource and access privileges of the associated application. As illustrated in the figures, in one embodiment, there is at least one level of hierarchy, although more generally, there may be more than one level of hierarchy. In one embodiment, one of the resource managers is an end-system manager 206.
The kernel and resource managers are part of a trusted computing base (TCB) of the platform. In one embodiment, the resource managers do not share the same address space (different memory protection domains). Each resource manager is preferably isolated in a separate process (thus the design lends itself to microkernel architectures). The resource managers 208 isolate applications from global resource management and from direct access to the kernel.
In one embodiment, the end-system resource manager 206 may be designated as a system wide entity to act as the root of the resource management tree, and be responsible for the highest level of resource coordination and partitioning between the resource managers 208 and delegate the management of resource chunks to the resource managers 208. The end-system resource manager 206 may instantiate the other resource manager 208 at boot time. Applications may also be denied direct access to the end-system resource manager 206 to further improve security of the process. Coarse resource management may be performed at a kernel level.
Each resource manager is part of a trusted computing base in that it is: 1) trusted to (a) not violate/exceed quotas and access controls defined by an application’s CARM, and (b) prevent attempts by an application to cause denial-of-service in other applications (e.g., by throttling requests). It is the responsibility of the resource manager to manage the application’s access to resources according to defined quotas. It is the responsibility of the resource manager to prevent or deny access to other software services in the system according to defined privileges.
The resource managers 208 provide APIs to the applications 212 in order to reserve, access and free resources. Only resource managers 208 have the necessary privileges to request resources from the OS kernel. That is, individual applications do not have sufficient privileges to directly access the kernel. The kernel will refuse direct requests from untrusted entities such as the applications 212. This permits each resource manger 208 to interact directly with a microkernel to request resources, thus improving security and also manage resources. Thus, a resource manager 208 checks the CARM of an application before granting access to resources and/or services, and an application not having a CARM would be rejected service by a resource manager.
As also illustrated in Figure 2, there may be more than one resource manager 208. This facilitates scalability in a many-core or multi-core processor design because the number of resource managers may be adapted for a particular design.
Applications do not have direct access to either the kernel or to higher level (beyond immediate parent) resource managers. This arrangement enhances security and prevents the potential for QoS interference and crosstalk between applications.
In one embodiment, resource management in each resource manager is decentralized so that resources that have non-uniform access properties (e.g., memory, CPUs) can be separated out. To facilitate this, each resource manager maintains a number of threads of execution that redirect resource requests to different Resource Allocators (RAs). RAs exist for each type of resource in the system (thread, process, memory, IPC gate, semaphore, IRQ objects, and ICU objects). They manage a strict quota of resources that is provisioned to the resource manager by the end-system resource manager during start-up.
Figure 3 provides another view at a kernel level showing a kernel 304, data structures 306 in the kernel to support resource managers 308, individual resource managers 308 with associated local limited version of supporting data structures (DS) for the resource managers, and resources 302.
The resource managers provide an approach that is scalable and secure in a decentralized design that supports multi-core and many-core processor systems, reduces the potential for crosstalk between applications, and provides fine-grained control of resource accounting and access control. Since the number of resource managers can be increased if needed, the design id inherently scalable. Additionally, the use of the CARM permits resource accounting and improved access control. The CARM permits fine-grained definition and resource control to be implemented at runtime by providing guidance on what resources the application actually requires at runtime under normal (acceptable) conditions. Any attempt by an application to access more resources that are defined, or access software services that are not defined, will be contained. A specific situation that may lead to such a scenario is the execution of an erroneous application or a malicious application (e.g., software virus).
The resource managers act as trusted proxies. This hierarchical arrangement of trusted proxies provide a scalable means to manage access control to the kernel. The use of trusted proxies to prevent direct access of applications to centralized system services (e.g., the kernel) prevents application quality of service (QoS) cross-talk, and may also prevent denial-of-service attacks by an application on the system.
In one embodiment, system resources are divided between resource managers. Resources can be exchanged between managers in the advent of resource shortage by a specific manager. Load-balancing can be implemented either between peer managers or via a parent manager.
Resource managers are preferably multithreaded so that threads executing on multiple cores can invoke the services of the resource manager without communicating across microprocessor cores (same-core communications are in the general case higher performing that cross-core communications).
In one embodiment, the application’s CARM is a digitally signed resource/permissions specification that is attached to the application (e.g., as a special binary file section). During the loading of the application, the attached CARM is made accessible to the resource manager that is associated with the application. The CARM digital signature is verified to ensure authenticity of the manifest.
While an application may have a fixed assignment to a resource manager, more generally, more than one application may be assigned to a resource manager. It will also be understood the allocation may be made by various factors, such as: based on which resources a resource manager has been authorized to provide access to, and/or for the situation that a resource manager is delegated control over only a limited set of resources.
The CARM specifies what resources (e.g., device, memory bank), and how much of the resource (i.e., a quota), an application is “allowed” to request. As an application makes resource requests to its local resource manager, the resource manager both interacts with the kernel directly to facilitate the request, and also maintains a local quota and allocation count for the resource.
CARMs specify resource quotas (e.g., CPU, memory), and may also specify service access information (e.g., Real-time Clock) for each application. Because the CARM is signed (and thus authenticated), resource managers can enable access/allocate resources according to the CARM specification. Additionally, the CARM may also include incorporation of both wildcard specifications (e.g., IO port range), as well as indirect specifications (e.g., IO memory used by device X).
As an illustrative example, the CARM may be encapsulated as part of the application/library binary image using public/private key encryption or digital signing. A typical embodiment would use a structured data format such as XML.
In order to ensure that the CARM is authentic, each CARM is preferably digitally signed. In one embodiment, application developers have their CARMs signed by a trusted third party, or the system vendor. As one example, a prototype used compressed XML as the data format for the resource manifest. For digital signing, using a public/private key encryption scheme is an obvious choice. Other data format may also be used for the CARM.
An example resource manifest is given below:
<?xml version="1.0" standalone="yes" ?>
<!CERTIFIED ACCESS CONTROL AND RESOURCE MANIFEST -->
<IOPorts>
<Port bytes="4">0x3f8</Port>
</IOPorts>
<PciDevice vendor=0x10EC device=0x8167>
<MappedIOMemory>*</IOMemory>
<ICU>45</ICU>
</PciDevice>
<Quotas>
<RAM>1G</RAM>
<IPCGates>10</IPCGates>
<Semaphores>UNLIMITED</Semaphores>
<IRQs>100</IRQs>
</Quotas>
<Permissions>
<Service access="allow">rtc</Service>
<Service access="deny">*</Service>
</Permissions>.
As previously discussed, one aspect of the CARM is that it can provide a specification of both access control (i.e., what services can be invoked by the application) and of the resource quotas. The exact syntax and content of specification is not specific to these examples. An exemplary implementation would include a flexible hierarchical data format (such as XML) that is able to incorporate wildcard (resource subsets) and other more complex definitions. The CARM specification may also include indirect specifications for example, the above excerpt includes granting access to the physical memory regions that are reported by the Peripheral Component Interconnect (PCI) configuration sub-system (since the application cannot predict in advance what these regions would be). In one embodiment, the PCI configuration space access is incorporated into the TCB either as part of the Resource Manager or as part of an additional trusted entity.
Alternate embodiments
Although primary embodiments of the present invention are aimed at microkernel based designs that are naturally decomposed into component-based services that can be distributed across a multi-core/many-core processor, the present invention can also be used in the context of monolithic kernel designs such as Linux, Solaris and Microsoft Windows A suitable implementation would have to provide user-level resource managers that can interact with the kernel on behalf of an application. This might require modifications to existing kernel APIs to support such “delegated calls”. An example would be that a resource manager would be able to request memory allocation from the kernel and pass this allocation to the application. Access Control Lists (ACLs), or other access control measures, would also need to be put in place in order to prevent applications making invocations on the kernel directly.
Although the primary embodiment of the invention would use digital signatures to authenticate application manifests of the CARM, other secure data approaches may be adopted, including the use of hardware.
While the invention has been described in conjunction with specific embodiments, it will be understood that it is not intended to limit the invention to the described embodiments. On the contrary, it is intended to cover alternatives, modifications, and equivalents as may be included within the spirit and scope of the invention as defined by the appended claims. The present invention may be practiced without some or all of these specific details. In addition, well known features may not have been described in detail to avoid unnecessarily obscuring the invention.

Claims (15)

  1. A method of controlling access of an application to resources in a multi-core or many-core processor, system, comprising:
    receiving from each of a plurality of applications a trusted secure specification defining resource and access privileges of the associated application; and
    managing resources, controlled by the operating system, for each application based on the secure specification.
  2. The method of claim 1, wherein the managing of resources for the plurality applications includes utilizing a plurality of trusted proxies to interact with an OS kernel in order to manage resources for each application.
  3. The method of claim 1, wherein each trusted proxy is a resource manager that is part of a trusted computing base of the system.
  4. The method of claim 1, wherein the resources include processor resources, hardware resources, memory resources, and software services.
  5. The method of claim 1, further comprising utilizing the trusted secure specification to provide guidance on resources each application requires at runtime.
  6. The method of claim 2, wherein the trusted secure specification is attached to each application and is made accessible to the trusted proxy in response to loading of the application.
  7. The method of claim 1, wherein the trusted secure specification is signed by a trusted party.
  8. The method of claim 7, wherein the trusted party is a system vendor.
  9. The method of claim 1, further comprising:
    providing a software application executable on a many-core or multi-core processor system; and
    attaching to the software application a trusted secure specification defining resource and software service access privileges of the associated application to enable a resource manager to manage resources and service access for the software application.
  10. The method of claim 14, wherein the resource manager is a trusted proxy that interacts with a microkernel to manage resources for the application
  11. A many-core or multi-core processing system including:
    a set of processor cores and an associated memory;
    a microkernel; and
    a plurality of trusted resource managers acting as proxies to isolate applications from direct access of resources from the microkernel,
    wherein the plurality of trusted resource manager cores are trusted to allocate resources and permit access to services based on each application’s trusted secure specification defining resource and access privileges of the associated application.
  12. The system of claim 11, wherein each resource manager is part of a trusted computing base of the system.
  13. The system of claim 11, wherein the resources include processor resources, hardware resources, memory resources, and software services.
  14. The system of claim 11, wherein the trusted secure specification is used at runtime to provide guidance on resources the application requirements.
  15. The method of claim 11 wherein the trusted secure specification is attached to the application and is made accessible to the trusted proxy in response to loading of the application.
PCT/KR2013/003295 2012-04-24 2013-04-18 Scalable and secure application resource management and access control for multicore operating systems WO2013162208A1 (en)

Applications Claiming Priority (6)

Application Number Priority Date Filing Date Title
US201261637739P 2012-04-24 2012-04-24
US61/637,739 2012-04-24
US13/648,157 2012-10-09
US13/648,157 US9098726B2 (en) 2012-04-24 2012-10-09 Scalable and secure application resource management and access control for multicore operating systems
KR1020130038601A KR102027928B1 (en) 2012-04-24 2013-04-09 Scalable and secure application resource management and access control for multicore operating systems
KR10-2013-0038601 2013-04-09

Publications (1)

Publication Number Publication Date
WO2013162208A1 true WO2013162208A1 (en) 2013-10-31

Family

ID=49483443

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/KR2013/003295 WO2013162208A1 (en) 2012-04-24 2013-04-18 Scalable and secure application resource management and access control for multicore operating systems

Country Status (1)

Country Link
WO (1) WO2013162208A1 (en)

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR20050039661A (en) * 2003-10-24 2005-04-29 마이크로소프트 코포레이션 Operating system resource protection
US20050223382A1 (en) * 2004-03-31 2005-10-06 Lippett Mark D Resource management in a multicore architecture
US20070157211A1 (en) * 2005-12-29 2007-07-05 Hong Wang Instruction set architecture-based inter-sequencer communications with a heterogeneous resource
US20080163366A1 (en) * 2006-12-29 2008-07-03 Gautham Chinya User-level privilege management
US20090210702A1 (en) * 2008-01-29 2009-08-20 Palm, Inc. Secure application signing
US20090260004A1 (en) * 2008-04-10 2009-10-15 Palm, Inc. Computer program updates for mobile computing device

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR20050039661A (en) * 2003-10-24 2005-04-29 마이크로소프트 코포레이션 Operating system resource protection
US20050223382A1 (en) * 2004-03-31 2005-10-06 Lippett Mark D Resource management in a multicore architecture
US20070157211A1 (en) * 2005-12-29 2007-07-05 Hong Wang Instruction set architecture-based inter-sequencer communications with a heterogeneous resource
US20080163366A1 (en) * 2006-12-29 2008-07-03 Gautham Chinya User-level privilege management
US20090210702A1 (en) * 2008-01-29 2009-08-20 Palm, Inc. Secure application signing
US20090260004A1 (en) * 2008-04-10 2009-10-15 Palm, Inc. Computer program updates for mobile computing device

Similar Documents

Publication Publication Date Title
US9098726B2 (en) Scalable and secure application resource management and access control for multicore operating systems
US8429741B2 (en) Altered token sandboxing
CN110612512B (en) Protecting virtual execution environments
Reshetova et al. Security of OS-level virtualization technologies
US5504814A (en) Efficient security kernel for the 80960 extended architecture
US20160371496A1 (en) Protected regions
KR20090010872A (en) Method and apparatus for managing access privileges in a cldc osgi environment
US8892878B2 (en) Fine-grained privileges in operating system partitions
EP1475703A2 (en) Method and apparatus for controlling global visibility in a computer system
Melara et al. EnclaveDom: Privilege separation for large-TCB applications in trusted execution environments
Migliavacca et al. {DEFCON}:{High-Performance} Event Processing with Information Security
Thalheim et al. Rkt-io: A direct i/o stack for shielded execution
Li et al. SGXPool: Improving the performance of enclave creation in the cloud
Zhang et al. SecureBus: towards application-transparent trusted computing with mandatory access control
EP1271281A2 (en) Demonstrating integrity of a compartment of a compartmented operating system
EP2657874A2 (en) Scalable and secure application resource management and access control for multicore operating systems
WO2013162208A1 (en) Scalable and secure application resource management and access control for multicore operating systems
JP4853671B2 (en) Access authority determination system, access authority determination method, and access authority determination program
Masti et al. Isolated execution on many-core architectures
EP2581853B1 (en) Method and apparatus for secure web widget runtime system
Feske Genode operating system framework
Yan et al. Using a multi-tasking VM for mobile applications
Konopik Securing whole applications with sgx
Wu et al. Building GPU TEEs using CPU Secure Enclaves with GEVisor
Real et al. Secure deployment in trusted many-core architectures

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 13782104

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 13782104

Country of ref document: EP

Kind code of ref document: A1