Computer applications are often programmed to interface with an operating system that provides various functions to the applications. For example, operating systems can provide lower-level services such as device drivers and memory management routines, or higher-level services such as graphical user interface application programming interfaces (“APIs”). In some cases, a particular application may only be provided for a particular operating system. For example, an application may be implemented on one or more versions of Windows®, but may not have been ported to Unix® or other operating systems.
Computer applications are also often limited to certain instruction set architectures. For example, an application can be compiled into binary code for one instruction set architecture, e.g., x86. This binary code generally will not execute on a different instruction set architecture, e.g., a PowerPC processor. Rather, different compiled binaries normally need to be generated for each instruction set architecture on which the application is expected to run.
Traditional techniques to allow application portability across operating systems and instruction set architectures tend to be relatively inefficient and cumbersome. For example, virtual machine monitors can allow a copy of a guest operating system to execute on a computer system with a different underlying host operating system. However, this approach generally involves executing full copies of both the guest operating system as well as the underlying host operating system. Likewise, central processing unit (“CPU”) emulators can be used to translate code into different instruction sets at runtime instead of using precompiled binaries. However, these emulators generally have a substantial memory and processor footprint that do not lend them to efficient integration with a guest operating system executing on a virtual machine.
This document relates to virtual computing techniques. One implementation is manifested as a technique that can include receiving a request to execute an application. The application can include first application instructions from a guest instruction set architecture. The technique can also include loading an emulator and a guest operating system into an execution context with the application. The emulator can translate the first application instructions into second application instructions from a host instruction set architecture. The guest operating system can provide at least one guest operating system interface that is called by the application. The technique can also include running the application by executing the second application instructions.
Another implementation is manifested as a system that can include an emulator configured to receive a request from a guest operating system to load first instructions in a guest instruction set architecture. The emulator can also be configured to check a translation table to determine whether corresponding second instructions are available in a host instruction set architecture, and, in a first instance when the second instructions are available, load the second instructions. The emulator can also be configured to, in a second instance when the second instructions are not available, delay translating the first instructions until a request to execute the first instructions is received. The system can also include at least one processing device configured to execute the emulator.
Another implementation is manifested as a computer-readable storage media that can include instructions. The instructions can be executed by one or more processing devices, which can cause the one or more processing devices to perform receiving a request to execute an application on a host device. The host device can have a host instruction set architecture and a host operating system. The application can include one or more application binaries. The acts can also include checking application metadata associated with the application to identify an instruction set architecture and an operating system for the application. When the instruction set architecture for the application corresponds to the host instruction set architecture and the operating system for the application is the host operating system, the application can be loaded in an execution context. When the instruction set architecture for the application corresponds to the host instruction set architecture and the operating system for the application is different than the host operating system, the application can be loaded together with a guest operating system for the application an execution context. When the instruction set architecture for the application is different than the host instruction set architecture and the operating system for the application is different than the host operating system, the application, an emulator, and a guest operating system for the application can be loaded together in an execution context.
The above listed examples are intended to provide a quick reference to aid the reader and are not intended to define the scope of the concepts described herein.
The accompanying drawings illustrate implementations of the concepts conveyed in the present document. Features of the illustrated implementations can be more readily understood by reference to the following description taken in conjunction with the accompanying drawings. Like reference numbers in the various drawings are used wherever feasible to indicate like elements. Further, the left-most numeral of each reference number conveys the figure and associated discussion where the reference number is first introduced.
Overview
This document relates to virtual computing techniques performed on a host device, and more particularly to implementing a guest operating system (“OS”) and/or an application in a different instruction set architecture (“ISA”) than that of the host device. Generally speaking, the host device can have a host OS operating thereon, which can execute in the native ISA of the host device. The host OS can interact directly with the hardware of the host device to provide normal OS functionality. For example, the host OS can provide functionality such as memory management, thread creation, thread synchronization, input/output streams, creating windows and/or dialog boxes, etc.
Generally speaking, the host OS can provide this functionality to various applications via one or more interfaces such as APIs or application binary interfaces (“ABIs”). The host OS interfaces are collectively referred to herein as the “host OS application interface set.” In many cases, applications are configured to make calls to functions provided by a particular OS. If these functions are supported by the host OS application interface set, the application can generally interface directly with the host OS. If not, the application can have limited or no compatibility with the host OS. For example, a Unix® machine may not implement any Windows® application interfaces, and thus a Windows® application typically will not run directly on a Unix® machine. Even different versions of an operating system may deprecate individual functions, implement them in unexpected ways, or otherwise render the operating system incompatible with the application. For example, an application that is configured to run on Windows® 98 may attempt to call various application interfaces that are deprecated in a newer OS such as Windows® 7. This may render the application partially or completely inoperable on a machine that is running Windows® 7.
One way to handle this problem is to implement a guest operating system that runs on the host operating system. The guest OS can also implement a set of application interfaces (API's or ABI's), referred to herein collectively as the “guest OS application interface set.” If the guest operating system implements individual application interface calls as expected by the application, the application can interface with the guest operating system and function properly. This is generally true regardless of whether the host OS application interface set also supports the functions called by the application. However, as mentioned above, running two full copies of different operating systems concurrently can often be quite inefficient. Moreover, this problem can be compounded when the application executes in a different instruction set than the hardware of the host device.
The disclosed implementations provide a guest operating system that can support applications that execute in a different ISA than the host device. The guest OS can interface to an OS virtualization monitor (“OS VM”) that provides a relatively small set of abstractions to the guest OS. These abstractions can be built via individual binary calls from the guest OS to the OS virtualization monitor. Collectively, the individual binary calls implemented by the OS virtualization monitor are referred to herein as the “OS VM interface set” or “VM interface set.”
The guest OS can make calls to implement the guest OS interface set in a manner that is consistent with the expectations of applications that are configured to use individual guest OS interfaces. If the application is in a different instruction set than the host device, the application and the guest OS can execute on a CPU emulator. The guest OS can make calls to the VM interface set to implement the guest OS application interface set as expected by the application. From the perspective of the application, the guest OS is supporting the application via memory management, thread creation, thread synchronization, input/output streams, creating windows and/or dialog boxes, etc. In some implementations, the application can execute on the CPU emulator in the same execution context as the guest OS, e.g., a single user-mode process.
Using the above-described architecture, the application can execute using both a different instruction set and a different OS application interface set than is provided by the underlying host device and OS. Moreover, because the application can execute together with the guest OS in a user-mode process, the guest OS can be implemented in user-mode instructions that share security permissions with user-mode instructions of the application. This can also substantially reduce the resource footprint of the guest OS and CPU emulator, because the guest OS and CPU emulator do not need to provide support for kernel mode instructions in the guest ISA. Instead, only the host OS needs to execute kernel mode instructions in the native ISA.
Example System
For purposes of explanation, consider introductory
Memory 102 of host computing device 100 can include various components that implement certain processing described herein. For example, memory 102 can include a host operating system 103. Generally speaking, host operating system 103 can be a fully functional operating system such as found on a modern personal computer, server, tablet, cell phone, or other computing device. For example, host operating system 103 can be a version of Windows®, Unix® (including related operating systems such as OS X®), Linux® (including related operating systems such as Android®), a real-time and/or embedded operating system, etc. Host operating system 103 can include one or more binary files that are in the native or host ISA for CPU 101.
Memory 102 can also include an operating system virtualization monitor 104 and an execution context 105. Execution context 105 can include a process, thread, task, or other execution context that includes an emulator 106, a guest operating system 107, and an application 108. Note that host OS 103 and/or OS virtualization monitor 104 can generally be implemented via one or more other execution contexts. In some implementations, execution context 105 includes a single address space that is shared by emulator 106, guest OS 107, and application 108. Said another way, execution context 105 includes memory that is allocated specifically for use by any of emulator 106, guest OS 107, and application 108, and that is not available for use by other execution contexts on host computing device 100.
Generally speaking, guest operating system 107 can be configured to provide a guest OS application interface set for applications such as application 108. Operating system virtualization monitor 104 can be configured to provide a set of virtualization interfaces to guest operating system 107, e.g., the OS VM interface set. Host OS 103 can be configured to provide a host OS application interface set to OS VM 104. Generally speaking, emulator 106, OS VM 104, and host OS 103 can be implemented in the host ISA. Application 108 and guest operating system 107 can each include one or more binary files that include instructions in the guest ISA which can be different than the host ISA.
Emulator 106 can be configured to provide instructions that are translated from the guest ISA to the host ISA so that the translated instructions can be executed on CPU 101. For example, emulator 106 can be configured to compile a set of instructions from the guest ISA into the host ISA. Emulator 106 can also be configured to obtain a previously-translated set of instructions in the host ISA. For example, emulator 106 can be configured to track instructions from the guest ISA that have already been compiled into the host ISA and use the previously-compiled instructions rather than recompiling them. Emulator 106 can also interpret and/or just-in-time compile guest ISA instructions into the host ISA, as set forth in more detail below.
In some implementations, CPU 101 can have different levels of privileges for individual instructions. For example, an x86 processor can have certain instructions that can only be executed in a “kernel mode” that are not available to “user mode” programs. In such implementations, host operating system 103 can include binaries that execute in kernel mode, but only allow access to CPU 101 via user mode instructions for execution context 105. Said differently, execution context 105 can be a user mode execution context, whereas host operating system 103 can include at least one kernel mode execution context, e.g., a Windows® system process. More generally, host operating system 103 can include at least one privileged execution context that has at least some higher privileges than execution context 105.
In some implementations, host operating system 103 can implement lower-level operating system functionality such as timers, interrupts, input/output, virtual memory (e.g., accessing a page table maintained by CPU 101), pointer validation, and/or context switching by switching to the privileged execution context, e.g., kernel mode. Host operating system 103 can also implement “rich” operating system functionality via one or more interfaces for application configuration, graphical user interfaces, etc., in a non-privileged execution environment such as a user mode process. Host operating system 103 can provide both the lower-level and rich functionality via the host OS application interface set.
However, because application 108 is generally configured to interface with guest OS 107 instead of host OS 103, application 108 may not be configured to use the host OS application interface set. Instead, guest operating system 107 can provide such operating system functionality via a guest OS application interface set. The guest OS application interface set can include at least some application interfaces that are particular to guest operating system 107 and that may not be provided by host operating system 103. Because these interfaces are provided by guest OS 107, application 108 does not need to be ported, recompiled, or otherwise modified to interface directly with host operating system 103. Moreover, because guest operating system 107 and application 108 are operable on emulator 106, application 108 can also execute binary code that is in a different ISA than the native ISA for CPU 101. Thus, application 108 can run directly within execution context 105 even though application 108 may have originally been built for both a different operating system and a different architecture than host computing device 100.
Note, however, that in some implementations, part or all of guest OS 107 and application 108 can run in a kernel mode process, e.g., execution context 105. OS VM 104 can cause the kernel mode process to appear to application 108 as a user-mode process. For example, OS VM 104 can prevent application 108 from executing any kernel mode instructions, while OS VM 104 can allow guest OS 107 to execute kernel mode instructions.
OS VM 104 can also service certain requests by application 108 with responses that are consistent with application 108 executing in a user-mode process. For example, application 108 can execute an instruction in the guest ISA that reads a register value from emulator 106. The register value can represent the privilege mode in which application 108 executes in the guest ISA. OS VM 104 can respond to application 108 with a value that indicates that application 108 is executing in a non-privileged mode. This can be true even when execution context 105 is actually a privileged execution context provided by host OS 103 and can execute privileged instructions in the host ISA.
As a specific example, consider a scenario where the guest ISA is an x86 instruction set. Application 108 can execute an x86 PUSHFD instruction and receive a response indicating that application 108 is executing in Ring 3 of the x86 ISA. However, execution context 105 (e.g., guest OS 107 and/or emulator 106) may actually have access to Ring 0 x86 functionality. Note that this may also mean that corresponding host ISA instructions can be executed by guest OS 107 and/or emulator 106, but not application 108.
Furthermore, note that, in some implementations, guest operating system 107 does not need to fully implement certain lower-level operating system functionality discussed above with respect to host operating system 103. Rather, guest operating system 107 can be built to use calls to the VM interface set to provide such functionality to application 108. OS VM 104 can translate these calls into corresponding calls from the host OS application interface set and host OS 103 can handle the calls in the host ISA. This implementation can reduce the footprint of guest operating system 107 while still providing the flexibility to support the complete guest OS application interface set.
However, some or all of the application binaries may use calls to the guest OS application interface set. These calls are also generally in the guest ISA, but rely on guest OS 107 to perform some functionality for application 108. Guest OS 107 can include one or more binaries in the guest ISA that implement the functions provided via the guest OS application interface set. Some of these binaries can also be translated by emulator 106 into the host ISA and execute directly on CPU 101. For example, in some implementations, guest OS 107 can draw a window for application 108 using only its own translated code via emulator 106. Guest OS 107 may be able to do so because the window can be drawn without using privileged instructions such as kernel mode instructions.
However, in some cases, application 108 may make a guest OS interface call that guest OS 107 cannot satisfy directly. For example, application 108 may request to access a file or create a new thread. Guest OS 107 may need to interface with OS virtualization monitor 104 to implement these operations, because these operations may require privileged (e.g., kernel mode) instructions and/or file system access privileges. Guest OS 107 can access files, create new threads, etc. by making calls to the VM interface set in the guest ISA. Emulator 106 can translate these calls into the host ISA. The translated VM interface calls can be provided to OS VM 104, which can execute them in the host ISA.
In some cases, the VM interface calls are implemented by OS VM 104 via one or more calls to host OS application interfaces. Indeed, some VM interface calls are simply wrappers for the underlying host OS calls, e.g., creating threads or allocating virtual memory. In other cases, the guest OS can add a layer of functionality on top of host OS 103 calls to OS VM 104. To do so, OS VM 104 can make calls to high level services provided by host OS 103, such as file input/output, threading, synchronization, etc.
For example, OS VM 104 can enforce permissions for application 108, guest OS 107, and/or emulator 106. OS VM 104 can do so using a single set of permissions associated with execution context 105 for various operations. Thus, for example, OS VM 104 can prevent application 108 from accessing a particular file by not allowing any instructions from execution context 105 to access the file. This implementation allows guest OS 107 and application 108 to share a common set of permissions.
Guest OS 107 can also provide device support for devices such as displays, printers, keyboards, mice, etc. via a remote desktop protocol (“RDP) instead of using a conventional device driver. Guest OS 107 can do so by receiving calls to the guest OS application interface set from application 108 and communicating with the devices via the RDP protocol. The RDP protocol can be implemented via communication pipes that are routed through OS VM 104 to host OS 103. Host OS 103 can receive the RDP calls and control the devices via device drivers that are part of host OS 103. Note that the communication pipes can cross machine boundaries, e.g., over a network or other type of communication link.
Using precompiler 301, CPU emulator 106 can translate binary files of guest OS 107 and/or application 108 from the guest ISA to the host ISA. Generally speaking, precompiler 301 can translate the binaries before the binaries are invoked for execution, e.g., precompiler 301 can translate binaries for guest OS 107 offline before guest OS 107 is loaded into execution context 105. Likewise, precompiler 301 can translate the binaries for application 108 before application 108 is loaded into execution context 105. For example, precompiler 301 can load one or more binaries of application 108 and/or guest OS 107 from storage into memory 102, translate them from the guest ISA to the host ISA, and store the corresponding host ISA binaries for later usage.
Under some circumstances, precompilation is not necessarily suitable. For example, a user may request to initiate application 108 and/or guest operating system 107 on host computing device 100 before precompiled binaries in the host ISA are obtained by emulator 106. As another example, application 108 may generate code at runtime in the guest ISA which needs to be translated into the host ISA while application 108 and guest OS 107 are already running. Under such circumstances, the binaries can be translated at runtime by just-in-time compiler 302 and/or interpreter 303.
Generally speaking, just-in-time compiler 302 compiles a group of instructions (binary) in the guest ISA the first time they are executed, caches the compiled instructions as one or more binaries in the corresponding host ISA, then executes the cached host ISA binaries each time the corresponding binaries in the guest ISA are invoked afterwards. In contrast, interpreter 303 translates guest ISA instructions into host ISA sequentially and generally does not compile or cache the translated host ISA instructions. Rather, each time the guest ISA instructions are invoked, interpreter 303 performs the translation and executes the host ISA instructions, but does not retain the translated host ISA instructions for later use.
Note that, in some implementations, the translation techniques mentioned above can be performed using source files instead of binaries. For example, one or more source files of guest OS 107 and/or application 108 can be compiled and/or linked by precompiler 301, just-in-time compiler 302, and/or interpreter 303 instead of performing the translation of binaries. Generally speaking, however, many applications and operating systems are distributed only as binaries and the techniques disclosed herein can be performed without access to source code for either guest OS 107 or application 108.
Note that there may be certain performance trade-offs associated with which of the above-mentioned techniques is used for translation. When possible, precompiling can provide good performance because the host ISA binaries are available when application 108 and/or guest OS 107 begins execution. This is because there is no need to translate the guest ISA instructions at runtime, the precompilation process can be performed offline prior to their execution. Furthermore, the precompiled binaries can be resident in shared memory. This can be particularly useful in circumstances where multiple applications execute the same binary code on emulator 106, because the applications themselves may have different address spaces in their respective execution contexts. By storing the precompiled host ISA binary in shared memory, the applications sharing the host ISA binary do not need to each have a copy of the host ISA binary in the address space for their respective execution contexts. Rather, the host ISA binary can be shared between multiple execution contexts, each of which can include an application and/or guest OS.
Just-in-time compiling, on the other hand, generally occurs while application 108 and/or guest OS 107 is already executing. Moreover, just-in-time compiling generally results in a host ISA binary that is stored in the private address space for the application, e.g., in memory that is allocated to the application's execution context. The first time a given set of instructions is executed by application 108, the instructions are compiled into the host ISA. This can result in a certain amount of latency because the compilation can use a substantial amount of computational resources, e.g., heavy processor loading on CPU 101, substantial usage of memory 102, and/or the time to read the guest ISA binary from storage into memory 102.
However, when using just-in-time compiler 302, once a given set of instructions has been compiled into the host ISA, they do not need to be recompiled each time the corresponding guest ISA instructions are invoked. In contrast, interpreter 303 generally translates guest ISA instructions sequentially and does not cache translated instructions. This can prevent the one-time latency issue mentioned above for just-in-time compilation. However, because the host ISA instructions are not cached for later use by interpreter 303, the host ISA instructions need to be generated each time the corresponding guest ISA instructions are invoked. Also, many interpreters produce code that is not optimized or is otherwise relatively inefficient in comparison to code that is compiled by precompiler 301 and/or just-in-time compiler 302.
Emulator 106 can also maintain a translation table 304. For example, translation table 304 can be used by emulator 106 to check whether a particular set of guest ISA instructions have been translated into host ISA instructions and loaded for execution. By doing this check before translating the guest ISA instructions with precompiler 301, just-in-time compiler 302, or interpreter 303, emulator 106 can avoid unnecessary compilation overhead. Note that the term “table” is used generically to refer to many different data structures and that translation table 304 can be implemented using arrays, structures, classes, linked lists, trees, etc.
As shown in
Application 108 can make calls to the guest OS application interface set by linking to the guest OS binaries at runtime. From the perspective of application 108, these binaries are located at the guest ISA addresses at column 402. When they are loaded by emulator 106, however, emulator 106 updates translation table 304 with the corresponding host ISA address 403. Note that host ISA address 403 can be a virtual memory address within the address space allocated to execution context 105, and may actually correspond to different physical addresses in memory 102. In such implementations, CPU 101 and/or host OS 103 can translate the virtual addresses to actual physical addresses on memory 102.
As described below, each time a load request for a guest ISA binary is received, emulator 106 can check translation table 304 to determine whether the corresponding host ISA binary has been previously compiled and loaded into memory. If so, emulator 106 does not need to translate the binary into the host ISA. Instead, emulator 106 can simply wait until the binary at the corresponding host ISA address 403 is executed and run the translated code at that time.
If the host ISA binary has already been loaded, the binary is ready to execute. If the host ISA binary has already been compiled but not loaded, e.g. precompiled and available in storage, them emulator 106 can load the precompiled binary and update translation table 304. If the host ISA binary is not yet available on storage, emulator 106 can wait until execution time and use just-in-time compiler 302 to translate App_DLL_1 into the host ISA. At that time, emulator 106 can make a new entry in translation table 304 that includes the guest ISA address for App_DLL_1 as well as the corresponding host ISA address where the translated binary is loaded. Then, emulator 106 will not need to recompile App_DLL_1 if application 108 attempts to load this file again. Rather, emulator 106 can receive the guest ISA address for this file from application 108, determine that there is a corresponding host ISA address that is already loaded with a host ISA binary by checking translation table 304, and later execute the corresponding host ISA binary without needing to translate the file into the host ISA again.
To the extent feasible, it can be useful to precompile as many binaries as possible for guest OS 107 and/or application 108. For example, if host computing device 100 is intended to permanently support the guest OS 107, it can be desirable to precompile all of the binaries for the guest OS, or at least those binaries that are most likely to be used at runtime by applications. Then, the binaries are available to be loaded and updated in translation table 304 responsive to receiving the corresponding guest ISA load instruction. Likewise, if application 108 is expected to remain on host computing device 100 for any sustained period of time, it can also be desirable to precompile all binaries associated with application 108. In some implementations, emulator 106 and/or OS VM monitor 104 can track usage statistics associated with individual guest OS binaries and/or application binaries and precompile more frequently-used binaries while leaving other binaries to be compiled at runtime by just-in-time compiler 302 and/or interpreter 303. This can reduce the amount of memory required for execution context 105 except in instances where the infrequently-used binaries are actually loaded by application 108 and/or guest OS 107.
However, in some implementations, it may be more feasible or desirable to not precompile all, or even any, of the binaries associated with guest OS 107 and/or application 108. For example, if the execution of guest OS 107 and/or application 108 is intended to be temporary, e.g., a single use, it can be more efficient to interpret and/or just-in-time compile all of the binaries into the host ISA.
Furthermore, certain binaries may be particular to certain hardware. For example, sometimes two different processors can implement the same basic host ISA. One of the processors may use an arithmetic logic unit (“ALU”) to emulate floating point operations with integer operations, while the other may have an additional piece of hardware, e.g., a floating-point unit, that accepts certain floating-point instructions that are not in the basic host ISA. Under such circumstances, it is generally not desirable to compile binaries with the floating point instructions for the processor that does not have a floating point unit. Instead, these binaries would generally be compiled with the corresponding integer operations to implement the emulated floating point operations.
To accommodate these distinctions, emulator 106 can be configured to precompile all of the binaries for application 108 and/or guest OS 107 without the floating point instructions. At runtime, emulator 106 can perform a check to see whether CPU 101 includes the floating point unit. If so, binaries that include floating point operations can be just-in-time compiled or interpreted at runtime instead of executing the precompiled binaries. Otherwise, the precompiled floating point emulation integer operations can be executed instead. Alternatively, the binaries can be precompiled both with and without the floating point instructions ahead of time, and emulator 106 can load the appropriate binary at runtime after determining whether CPU 101 supports the floating point instructions.
Furthermore, note that guest operating system 107 may be substantially reduced in size relative to a “typical” full operating system. In some implementations, guest operating system 107 may even have a smaller memory, disk, and/or processor footprint than application 108. Accordingly, in some implementations, guest operating system 107 and/or application 108 can be configured together in an installer that installs both guest OS 107 and application 108 together on host computing device 100. In such implementations, the installer may check to ensure that host computing device 100 has an appropriate emulator 106 for the guest ISA before going ahead with the installation. The installer can also check CPU 101 to see whether CPU 101 supports certain instructions, such as the aforementioned floating point instructions, and install different binaries for application 108 and/or guest OS 107 depending on whether the instructions are supported.
Using the techniques introduced above, it is possible to support applications configured for various instruction sets and operating systems concurrently on host computing device 100.
Memory 102 can also include an execution context 505 with an application 506 and a guest OS 507. Note, however, that execution context 505 is shown without an emulator. Execution context 505 may be appropriate when guest OS 507 and application 506 are implemented in the host ISA, but application 506 is configured for guest OS 507 instead of host OS 103. Each of execution context 105, 501, and 505 can be configured to communicate to host OS 103 via OS virtualization monitor 104.
Execution context 508 can include an application 509. Generally speaking, execution context 508 may be appropriate for applications that are in the host ISA and are implemented in the host ISA. Note that, because application 509 is configured for host OS 103, execution context 508 may communicate directly with host OS 103 instead of with OS virtualization monitor 104.
Furthermore, using OS VM 104 can allow different emulators and/or guest operating systems the flexibility to run on other host devices with different underlying host operating systems and/or instruction sets. This is because OS VM 104 provides a layer of abstraction between the emulators/guest OS's and the underlying host device. Generally speaking, the guest OS and/or emulators use calls to the OS VM interface set instead of directly using the host OS application interface set. Thus, all that is needed for a given emulator and/or guest OS to run on a different host OS is an OS VM monitor that properly implements the OS VM interface set. Even if the other host device uses a different instruction set, the emulator and/or OS can simply be recompiled to the ISA for the host device where they will run.
The following is an exemplary interface set that can be provided by OS VM 104:
in PUNICODE_STRING Message);
As mentioned above, each guest OS can use calls to the VM interface set instead of implementing the guest OS functionality directly. In some cases, a guest OS application interface is a simple wrapper for an underlying VM interface call. This can be the case for virtual memory allocation, thread creation, etc. For example, guest OS 107 and guest OS 503 may use different calling conventions for their respective memory allocation interfaces, e.g., different number, order, or names of parameters, etc. However, both guest OS 107 and guest OS 503 can implement virtual memory allocation with calls to DkVirtualMemoryAllocate.
Other guest OS functionality may be built using non-trivial binaries that still can utilize the underlying VM interfaces. For example, files, locks, timers, etc., can all be built inside of each individual guest OS. Furthermore, recall that each guest OS can also have one or more binaries that execute directly and do not necessarily use calls to the VM interface set. For example, guest OS 107 and guest OS 503 can support different interface calls for creating graphical windows. These interface calls may be implemented directly by executing the corresponding guest OS binaries which may not involve directly calling the VM interface set. In other words, unmodified guest OS binaries may be executed directly instead of modifying the guest OS to use calls to the VM interface set.
In some implementations, this is accomplished by providing modified versions of some binaries that would normally be associated with the guest OS. For example, a Windows® guest OS may include a binary called comctl32.dll that provides various graphical features such as toolbars and tabs. Comctl32.dll may, in turn, rely on calls to another binary, kernelbase.dll. Typically, guest OS 107 is distributed with both of these.dll files. In some disclosed implementations, comctl32.dll runs in execution context 105, and calls from comctl32.dll are passed to a customized version of kernelbase.dll that runs in OS VM 104 to support guest OS 107. This version of kernelbase.dll may rely on calls to the VM interface set. This is a particular example of how user mode operating system functionality can be moved into an execution context along with a supported application and an appropriate emulator.
In some implementations, applications can migrate across device boundaries to execute on a different host device. If the other host device implements the VM interface set and the host OS thereon supports the RDP protocol, this can be accomplished by copying the address space and execution context 105 over to the other host device. For example, one or more pages of memory used by guest OS 107 and/or application 108 as well as register values or other state information can be provided to the other host device.
Although not shown in
In the manner described above, application 108 can seamlessly transition across different ISA's and host operating systems in mid-execution. Note that, in some implementations, host computing device 620 can be preconfigured with precompiled binaries for guest OS 107. This can reduce the amount of time it takes for application 108 to be migrated.
Method Implementations
A request to start an application can be received at block 701. For example, OS virtualization monitor 104 can receive a request to run an application such as application 108, 502, 506, and/or 509.
Application metadata can be checked at block 702. For example, OS VM 104 can check a manifest associated with application 108 to determine what ISA and/or operating system application 108 is configured to run. In some implementations, the application manifest can be written in a markup language such as extensible markup language (“XML”).
If the application manifest indicates that the application is in the host ISA and is configured to run on the host operating system, method 700 can move to block 703. At block 703, the application can run directly on the host OS without an emulator. For example, OS VM 104 can pass the application to host OS 103. Host OS 103 can create a new execution context and run the application directly within the context. This configuration is generally illustrated by execution context 508 in
If the application manifest indicates that the application is in the host ISA but is configured to run on a different operating system than the host OS, method 700 can move to block 704. At block 704, the appropriate guest OS is loaded into an execution context with the application. Next, at block 705, the application is executed in the execution context with the guest OS. This configuration is generally illustrated by execution context 505 in
If the application manifest indicates that the application is in a different ISA than the host ISA and is also configured to run on a different operating system than the host OS, method 700 can move to block 706. At block 706, the appropriate emulator is loaded into an execution context. Next, at block 707, the appropriate guest OS is loaded into the execution context with the emulator. Next, at block 708, the application can run on the guest OS in the guest ISA in the execution context with the emulator and the guest OS. This configuration is generally illustrated by execution contexts 105 and 501 in
A request to load a file is received at block 801. For example, emulator 106 can receive a request from application 108 and/or guest OS 107 to load a DLL or other binary file at runtime. The request can include one or more instructions in the guest ISA.
A translation table is checked at decision block 802. For example, emulator 106 can check translation table 304 using the guest ISA address of the file that application 108 and/or guest OS 107 is requesting to load. This enables emulator 106 to see if the file has already been loaded into memory, e.g., execution context 105.
If the file has already been compiled into the host ISA and loaded into memory, method 800 moves to block 803. At block 803, the file is in memory and ready to execute.
If the file has not yet been loaded (e.g., has no corresponding host ISA address in translation table 304) and has yet to be compiled (e.g., a compiled version is not available in storage), method 800 moves to block 804. At block 804, the method waits to compile the file until the file is executed. For example, in the case of a .dll file, the method can wait until at least one function from the .dll is called and then compile the file with just-in-time compiler 302 and/or interpreter 303.
If the file has already been compiled but has not yet been loaded (e.g., a compiled binary is available in storage but the file has no corresponding host ISA address in translation table 304), method 800 moves to block 805. At block 805, the file is loaded into memory. Next, at block 806, the table is updated with the address where the compiled host ISA version of the file is loaded. Next, at block 807, the file is ready to execute.
A request to execute code is received at block 901. For example, emulator 106 can receive a request from application 108 and/or guest OS 107 to execute code at runtime. The request can include one or more instructions in the guest ISA.
A translation table is checked at decision block 902. For example, emulator 106 can check translation table 304 using the guest ISA address of the code that application 108 and/or guest OS 107 is executing. Emulator 106 can thus determine whether the code that will execute is included in a file that has already been loaded into memory.
If the code has already been loaded into memory, method 900 moves to block 903. At block 903, the code is executed.
If the code has not been loaded and just-in-time compiling is not supported or otherwise not being used, method 900 moves to block 904. At block 904, the code is interpreted into the host ISA. At block 905, the interpreted code is executed.
If the code has not yet been loaded into memory and just-in-time compiling is supported, method 900 moves to block 906. At block 906, the code that will be executed is compiled into the host ISA and loaded into memory. Next, at block 907, the translation table is updated to reflect the loaded binary is loaded in memory. Next, at block 908, the code is executed.
Note that the above discussion is largely illustrated at a file level of granularity. In other words, translation table 304 includes host ISA addresses for individual .dll files. However, note that each file can include multiple functions as well as data. In some implementations, more refined granularities can be used. For example, addresses of each function in a file can be tracked individually rather than tracking the file as a whole.
Although techniques, methods, devices, systems, etc., pertaining to the above implementations are described in language specific to structural features and/or methodological acts, it is to be understood that the subject matter defined in the appended claims is not necessarily limited to the specific features or acts described. Rather, the specific features and acts are disclosed as exemplary forms of implementing the claimed methods, devices, systems, etc.
Number | Name | Date | Kind |
---|---|---|---|
4874164 | Miner et al. | Oct 1989 | A |
5309978 | Noble et al. | May 1994 | A |
5598563 | Spies | Jan 1997 | A |
5689626 | Conley | Nov 1997 | A |
5732282 | Provino et al. | Mar 1998 | A |
5754830 | Butts et al. | May 1998 | A |
5819091 | Arendt et al. | Jun 1998 | A |
5815686 | Earl et al. | Sep 1998 | A |
5922056 | Amell et al. | Jul 1999 | A |
5926631 | McGarvey | Jul 1999 | A |
5974474 | Furner et al. | Oct 1999 | A |
6357003 | Zarrin et al. | Dec 2002 | B1 |
6546425 | Hanson et al. | Apr 2003 | B1 |
6578054 | Hopmann et al. | Jun 2003 | B1 |
6665731 | Kumar et al. | Dec 2003 | B1 |
6668376 | Wang et al. | Dec 2003 | B1 |
6813670 | Yao et al. | Feb 2004 | B1 |
6721288 | King et al. | Apr 2004 | B1 |
6874066 | Traversat et al. | Mar 2005 | B2 |
6876996 | Czajkowski | Apr 2005 | B2 |
7028308 | Kim | Apr 2006 | B2 |
7065607 | England et al. | Jun 2006 | B2 |
7185359 | Schmidt et al. | Feb 2007 | B2 |
7272782 | Sneh | Sep 2007 | B2 |
7275105 | Bloch et al. | Sep 2007 | B2 |
7287259 | Grier et al. | Oct 2007 | B2 |
7293107 | Hanson et al. | Nov 2007 | B1 |
7334122 | Burokas et al. | Feb 2008 | B2 |
7421579 | England et al. | Sep 2008 | B2 |
7444337 | Zhou et al. | Oct 2008 | B2 |
7493626 | Resch | Feb 2009 | B2 |
7496495 | Solomon et al. | Feb 2009 | B2 |
7502823 | Garg et al. | Mar 2009 | B2 |
7506083 | Lemke et al. | Mar 2009 | B1 |
7526561 | Bloch et al. | Apr 2009 | B2 |
7568619 | Todd et al. | Aug 2009 | B2 |
7574208 | Hanson et al. | Aug 2009 | B2 |
7574709 | Erlingsson et al. | Aug 2009 | B2 |
7596783 | Huang et al. | Sep 2009 | B2 |
7613862 | Mihai | Nov 2009 | B2 |
7627728 | Roeck et al. | Dec 2009 | B1 |
7640009 | Belkin et al. | Dec 2009 | B2 |
7644264 | Olsen | Jan 2010 | B1 |
7685593 | Solomon et al. | Mar 2010 | B2 |
7694139 | Nachenberg | Apr 2010 | B2 |
7694187 | Sounders et al. | Apr 2010 | B2 |
7703081 | Buches | Apr 2010 | B1 |
7703083 | Shi et al. | Apr 2010 | B2 |
7725613 | Bhardwaj et al. | May 2010 | B2 |
7769720 | Armington | Aug 2010 | B2 |
7774762 | Rochette et al. | Aug 2010 | B2 |
7788669 | England et al. | Aug 2010 | B2 |
7676538 | Potter et al. | Sep 2010 | B2 |
7812985 | Nguyen et al. | Oct 2010 | B2 |
7844442 | Tzruya | Nov 2010 | B2 |
7870153 | Croft et al. | Jan 2011 | B2 |
7882247 | Sturniolo et al. | Feb 2011 | B2 |
7886183 | Krishnan et al. | Feb 2011 | B2 |
7913252 | Shlomai | Mar 2011 | B2 |
7937612 | Lyadvinsky et al. | May 2011 | B1 |
7941813 | Protassov et al. | May 2011 | B1 |
7971049 | TeNgaio et al. | Jun 2011 | B2 |
7990823 | Tanaka et al. | Aug 2011 | B2 |
7996493 | Hill | Aug 2011 | B2 |
8010710 | Sumi | Aug 2011 | B2 |
8019861 | Ginzton | Sep 2011 | B2 |
8060656 | Hanson et al. | Nov 2011 | B2 |
8064598 | Vaha-Sipila | Nov 2011 | B2 |
8065444 | Lemke et al. | Nov 2011 | B2 |
8074231 | Hunt et al. | Dec 2011 | B2 |
8117554 | Grechishkin et al. | Feb 2012 | B1 |
8131919 | Gasser et al. | Mar 2012 | B1 |
8135877 | Wang | Mar 2012 | B2 |
8150971 | Lublin et al. | Apr 2012 | B2 |
8195774 | Lambeth et al. | Jun 2012 | B2 |
8196153 | de Cesare et al. | Jun 2012 | B1 |
8214849 | Cooper | Jul 2012 | B2 |
8237970 | Nguyen et al. | Aug 2012 | B2 |
8285987 | Kimball et al. | Oct 2012 | B1 |
8332652 | Boivie | Dec 2012 | B2 |
8346983 | Lim et al. | Jan 2013 | B2 |
8347063 | Panesar et al. | Jan 2013 | B2 |
8407727 | Eom et al. | Mar 2013 | B2 |
8418236 | Havemose | Apr 2013 | B1 |
8424082 | Chen et al. | Apr 2013 | B2 |
8429654 | Chao et al. | Apr 2013 | B2 |
8436944 | Murase et al. | May 2013 | B2 |
8453253 | Strong et al. | May 2013 | B2 |
8463951 | Priem | Jun 2013 | B1 |
8505029 | Chanda et al. | Aug 2013 | B1 |
8645977 | Jacobson et al. | Feb 2014 | B2 |
8875160 | Hunt et al. | Oct 2014 | B2 |
8903705 | Douceur et al. | Dec 2014 | B2 |
8954752 | Boivie | Feb 2015 | B2 |
20020019972 | Grier | Feb 2002 | A1 |
20020069192 | Aegerter | Jun 2002 | A1 |
20030208595 | Gouge et al. | Nov 2003 | A1 |
20030217174 | Dorenbosch et al. | Nov 2003 | A1 |
20030233404 | Hopkins | Dec 2003 | A1 |
20040015537 | Doerksen et al. | Jan 2004 | A1 |
20040168030 | Traversat et al. | Aug 2004 | A1 |
20040172629 | Tene et al. | Sep 2004 | A1 |
20040177243 | Worley, Jr. | Sep 2004 | A1 |
20050033980 | Willman et al. | Feb 2005 | A1 |
20050044534 | Darweesh et al. | Feb 2005 | A1 |
20050060722 | Rochette et al. | Mar 2005 | A1 |
20050080936 | Ray et al. | Apr 2005 | A1 |
20050091226 | Lin et al. | Apr 2005 | A1 |
20050102370 | Lin et al. | May 2005 | A1 |
20050108171 | Bajikar | May 2005 | A1 |
20050076186 | Traut | Jul 2005 | A1 |
20050177635 | Schmidt et al. | Aug 2005 | A1 |
20050187894 | Pletcher et al. | Aug 2005 | A1 |
20050198379 | Panasyuk et al. | Sep 2005 | A1 |
20050203962 | Zhou et al. | Sep 2005 | A1 |
20050240985 | Alkove et al. | Oct 2005 | A1 |
20060004927 | Rehman et al. | Jan 2006 | A1 |
20060005047 | Lekatsas et al. | Jan 2006 | A1 |
20060037072 | Rao et al. | Feb 2006 | A1 |
20060090084 | Buer | Apr 2006 | A1 |
20060156418 | Polozoff | Jul 2006 | A1 |
20060161563 | Besbris et al. | Jul 2006 | A1 |
20060161982 | Chari et al. | Jul 2006 | A1 |
20060184931 | Rochette et al. | Aug 2006 | A1 |
20060248208 | Walbeck et al. | Nov 2006 | A1 |
20060259734 | Sheu | Nov 2006 | A1 |
20060294518 | Richmond et al. | Dec 2006 | A1 |
20070061556 | Rothman et al. | Mar 2007 | A1 |
20070074191 | Geisinger | Mar 2007 | A1 |
20070078950 | Hopkins et al. | Apr 2007 | A1 |
20070134068 | Smith et al. | Jun 2007 | A1 |
20070136579 | Levy et al. | Jun 2007 | A1 |
20070136723 | Smith et al. | Jun 2007 | A1 |
20070169116 | Gujarathi et al. | Jul 2007 | A1 |
20070174910 | Zachman et al. | Jul 2007 | A1 |
20070198657 | Saliba et al. | Aug 2007 | A1 |
20070244980 | Baker et al. | Oct 2007 | A1 |
20070250838 | Belady et al. | Oct 2007 | A1 |
20070283324 | Geisinger | Dec 2007 | A1 |
20070288228 | Taillefer et al. | Dec 2007 | A1 |
20080005472 | Khalidi et al. | Jan 2008 | A1 |
20080005794 | Inoue et al. | Jan 2008 | A1 |
20080016339 | Shukla | Jan 2008 | A1 |
20080028401 | Geisinger | Jan 2008 | A1 |
20080127182 | Newport et al. | May 2008 | A1 |
20080127225 | Mullis et al. | May 2008 | A1 |
20080127348 | Largman et al. | May 2008 | A1 |
20080222160 | MacDonald et al. | Sep 2008 | A1 |
20080222628 | Batra et al. | Sep 2008 | A1 |
20080263531 | Perry et al. | Oct 2008 | A1 |
20080276012 | Mesa et al. | Nov 2008 | A1 |
20090024757 | Proctor | Jan 2009 | A1 |
20090064196 | Richardson et al. | Mar 2009 | A1 |
20090094337 | Dias | Apr 2009 | A1 |
20090204960 | Ben-Yehuda | Aug 2009 | A1 |
20090204961 | DeHaan et al. | Aug 2009 | A1 |
20090210871 | Dechovich | Aug 2009 | A1 |
20090217047 | Akashika et al. | Aug 2009 | A1 |
20090222304 | Higgins et al. | Sep 2009 | A1 |
20090249051 | TeNgaio et al. | Oct 2009 | A1 |
20090259993 | Konduri et al. | Oct 2009 | A1 |
20090265706 | Golosovker et al. | Oct 2009 | A1 |
20090282266 | Fries et al. | Nov 2009 | A1 |
20090282404 | Khandekar et al. | Nov 2009 | A1 |
20090282474 | Chen et al. | Dec 2009 | A1 |
20090307781 | Iga et al. | Dec 2009 | A1 |
20090328225 | Chambers et al. | Dec 2009 | A1 |
20100017461 | Kokkevis et al. | Jan 2010 | A1 |
20100017857 | Kramer | Jan 2010 | A1 |
20100023700 | Chen et al. | Jan 2010 | A1 |
20100042636 | Lu | Feb 2010 | A1 |
20100042796 | Vasilevsky et al. | Feb 2010 | A1 |
20100042987 | Yamada | Feb 2010 | A1 |
20100031276 | Hsieh | Apr 2010 | A1 |
20100082926 | Sahita et al. | Apr 2010 | A1 |
20100083015 | Yokota et al. | Apr 2010 | A1 |
20100115334 | Malleck et al. | May 2010 | A1 |
20100153659 | Lovell et al. | Jun 2010 | A1 |
20100158220 | Silverman | Jun 2010 | A1 |
20100169407 | Hsueh et al. | Jul 2010 | A1 |
20100169497 | Klimentiev et al. | Jul 2010 | A1 |
20100174833 | Filer et al. | Jul 2010 | A1 |
20100180275 | Neogi et al. | Jul 2010 | A1 |
20100185956 | Anantharaman et al. | Jul 2010 | A1 |
20100211663 | Barboy et al. | Aug 2010 | A1 |
20100211956 | Gopisetty et al. | Aug 2010 | A1 |
20100217853 | Alexander et al. | Aug 2010 | A1 |
20100262853 | Goda | Oct 2010 | A1 |
20100262977 | Havemose | Oct 2010 | A1 |
20100287263 | Liu et al. | Nov 2010 | A1 |
20100287548 | Zhou et al. | Nov 2010 | A1 |
20100287618 | Howell et al. | Nov 2010 | A1 |
20100293392 | Miyamoto | Nov 2010 | A1 |
20100306270 | McDiarmid et al. | Dec 2010 | A1 |
20100306848 | Gellerich | Dec 2010 | A1 |
20100332629 | Cotugno et al. | Dec 2010 | A1 |
20110004878 | Divoux | Jan 2011 | A1 |
20110047376 | Mital | Feb 2011 | A1 |
20110119494 | Huang et al. | May 2011 | A1 |
20110162082 | Paksoy et al. | Jun 2011 | A1 |
20110191494 | Turanyi et al. | Aug 2011 | A1 |
20110191788 | Jacobson et al. | Aug 2011 | A1 |
20110202739 | Grisenthwaite | Aug 2011 | A1 |
20110231670 | Shevchenko et al. | Sep 2011 | A1 |
20110246551 | Giancaspro et al. | Oct 2011 | A1 |
20110257992 | Scantland et al. | Oct 2011 | A1 |
20110264788 | Costa | Oct 2011 | A1 |
20110276806 | Casper et al. | Nov 2011 | A1 |
20110277013 | Chinta | Nov 2011 | A1 |
20110296487 | Walsh | Dec 2011 | A1 |
20110302330 | Cota-Robles et al. | Dec 2011 | A1 |
20110302415 | Ahmad et al. | Dec 2011 | A1 |
20110320520 | Jain | Dec 2011 | A1 |
20110320812 | Kuno et al. | Dec 2011 | A1 |
20120005192 | Baa et al. | Jan 2012 | A1 |
20120017213 | Hunt et al. | Jan 2012 | A1 |
20120036255 | Polsky | Feb 2012 | A1 |
20120036509 | Srinivasan et al. | Feb 2012 | A1 |
20120084562 | Farina et al. | Apr 2012 | A1 |
20120144042 | Lublin et al. | Jun 2012 | A1 |
20120159184 | Johnson et al. | Jun 2012 | A1 |
20120179485 | Saneii | Jul 2012 | A1 |
20120203932 | da Costa et al. | Aug 2012 | A1 |
20120222025 | Pandit | Aug 2012 | A1 |
20120227038 | Hunt et al. | Sep 2012 | A1 |
20120227061 | Hunt et al. | Sep 2012 | A1 |
20120265742 | Burckhardt et al. | Oct 2012 | A1 |
20120266167 | Spiers et al. | Oct 2012 | A1 |
20120291094 | Forrester et al. | Nov 2012 | A9 |
20120296626 | Bond et al. | Nov 2012 | A1 |
20120297249 | Yang et al. | Nov 2012 | A1 |
20130031371 | McLellan et al. | Jan 2013 | A1 |
20130036431 | Douceur et al. | Feb 2013 | A1 |
20130054734 | Bond et al. | Feb 2013 | A1 |
20130060947 | Nelson | Mar 2013 | A1 |
20130151846 | Baumann et al. | Jun 2013 | A1 |
20130151848 | Baumann et al. | Jun 2013 | A1 |
20130152209 | Baumann et al. | Jun 2013 | A1 |
20130232345 | Johnson et al. | Sep 2013 | A1 |
20130254884 | Dalcher et al. | Sep 2013 | A1 |
20130333005 | Kim et al. | Dec 2013 | A1 |
20160196426 | Hunt et al. | Jul 2016 | A1 |
Number | Date | Country |
---|---|---|
1380610 | Nov 2002 | CN |
1906560 | Jan 2007 | CN |
101174293 | May 2008 | CN |
101448255 | Jun 2009 | CN |
101632083 | Jan 2010 | CN |
101655798 | Feb 2010 | CN |
102077209 | May 2011 | CN |
1526425 | Apr 2005 | EP |
1669901 | Jun 2006 | EP |
1925120 | Dec 2006 | EP |
2005056429 | Mar 2005 | JP |
2005227995 | Aug 2005 | JP |
2006-164287 | Jun 2006 | JP |
2008111049 | Sep 2008 | WO |
2011027191 | Mar 2011 | WO |
Entry |
---|
LeVasseur et al. “Pre-Virtualization: Slashing the Cost of Virtualization”, (Year: 2005). |
Vaarala “Security Considerations of Commodity x86 Virtualization” (Year: 2006). |
Morrisett et al., “From System F to Typed Assembly Language”, Mar. 1999, retrieved at <<http://www.cs.princeton.edu/-dpw/papers/tal-toplas.pdf>>, 41 pages. |
Swift et al., “Improving the Reliability of Commodity Operating Systems”, ACM Journal, University of Washington, 33 pages. |
Restriction Requirement dated Sep. 29, 2011 from U.S. Appl. No. 12/463,892, 6 pages. |
Response filed Oct. 31, 2011to the Restriction Requirement dated Sep. 29, 2011 from U.S. Appl. No. 12/463,892, 9 pages. |
Applicant-Initiated Interview Summary dated Feb. 9, 2012 from U.S. Appl. No. 12/463,892, 3 pages. |
Non-Final Office Action dated Dec. 6, 2011 from U.S. Appl. No. 12/463,892, 34 pages. |
Response to the Non-Final Office Action dated Dec. 6, 2011, Applicant Summary of Interview with Examiner, and Amendment filed May 7, 2012 from U.S. Appl. No. 12/463,892, 20 pages. |
Final Office Action dated Sep. 10, 2013 from U.S. Appl. No. 12/972,081, 23 pages. |
Response filed Aug. 5, 2013 to Non-Final Office Action dated Apr. 5, 2013 from U.S. Appl. No. 12/972,081,15 pages. |
Final Office Action dated Jun. 14, 2012 from U.S. Appl. No. 12/463,892, 15 pages. |
Appeal Brief dated Jan. 14, 2013 from U.S. Appl. No. 12/463,892, 24 pages. |
Examinees Answer to Appeal Brief dated Feb. 19, 2013 from U.S. Appl. No. 12/463,892, 9 pages. |
Reply Brief filed Apr. 19, 2013 from U.S. Appl. No. 12/463,892, 5 pages. |
Decision on Appeal mailed Dec. 24, 2015 from U.S. Appl. No. 12/463,892, 7 pages. |
Applicant-Initiated Interview Summary dated Feb. 10, 2016 from U.S. Appl. No. 12/463,892, 3 pages. |
Response filed Feb. 23, 2016 to Final Office Action dated Jun. 14, 2012 and PTAB Decision of Jan. 8, 2016 from U.S. Appl. No. 12/463,892, 16 pages. |
Non-Final Office Action dated Nov. 6, 2012 from U.S. Appl. No. 12/834,895, 23 pages. |
Response filed Mar. 6, 2013 to Non-Final Office Action dated Nov. 6, 2012 from U.S. Appl. No. 12/834,895, 11 pages. |
Applicant Initiated Interview Summary dated Mar. 22, 2013 from U.S. Appl. No. 12/834,895, 3 pages. |
Final Office Action dated Apr. 30, 2013 from U.S. Appl. No. 12/834,895, 41 pages. |
Response filed Aug. 14, 2013 to Final Office Action dated Apr. 30, 2013 from U.S. Appl. No. 12/834,895, 12 pages. |
Notice of Allowance and Examiner-Initiated Interview Summary dated May 21, 2014 from U.S. Appl. No. 12/834,895, 20 pages. |
Supplemental Amendment filed Aug. 20, 2014 from U.S. Appl. No. 12/834,895, 8 pages. |
Notice of Allowance dated Feb. 11, 2015 from U.S. Appl. No. 12/834,895, 39 pages. |
Notice of Allowance dated Jun. 1, 2015 from U.S. Appl. No. 12/834,895, 20 pages. |
Notice of Allowance dated Sep. 21, 2015 from U.S. Appl. No. 12/834,895, 32 pages. |
Corrected Notice of Allowability dated Mar. 24, 2016 from U.S. Appl. No. 12/834,895, 7 pages. |
Non-Final Office Action dated Apr. 5, 2013 from U.S. Appl. No. 12/972,081, 38 pages. |
International Preliminary Report on Patentability dated Jun. 26, 2014 from PCT Patent Application No. PCT/US2012/067660, 6 pages. |
McKeen et al., “Innovative Instructions and Software Model for Isolated Execution”, Proceedings of the 2nd International Workshop on Hardware and Architectural Support for Security and Privacy, Jun. 24, 2013, 8 pages. |
Mergen et al., “Virtualization for High-Performance Computing”, ACM SIGOPS Operating Systems Review, vol. 40, Issue 2, Apr. 2006, pp. 8-11, 4 pages. |
Microsoft—TechNet, “Device Management and Installation Step-by-Step Guide: Signing and Staging Device Drivers in Windows 7 and Windows Server 2008 R2”, retrieved on Apr. 14, 2011 at <<ttp://technet.microsoft.com/en-us/library/dd919230%28WS.10%29.aspx>>, 2 pages. |
Microsoft, “Computer Dictionary”, Fifth Edition, Microsoft Press, 2002, 648 pages. |
Microsoft, “Microsoft Application Virtualization (App-V)”, retrieved on Dec. 7, 2011 at <<http://www.microsoft.com/en-us/windows/enterprise/products-and-technologies/virtualization/app-v.aspx>>, 2 pages. |
Microsoft, “Performance Tuning Guidelines for Windows Server 2008 R2”, Redmond, WA, May 16, 2011, 118 pages. |
Microsoft, “Remote Desktop Protocol: Basic Connectivity and Graphics Remoting Specification”, Redmond, WA, Sep. 20, 2011, 417 pages. |
Mihocka, Darek and Stanislav Shwartsman, “Virtualization Without Direct Execution or Jitting: Designing a Portable Virtual Machine Infrastructure”, retrieved at <<bochs.sourcheforge.net/Virtualization_WithoutHardwareFinal.pdf>> Jun. 21, 2008, 16 pages. |
Morriset et al., “From System F to Typed Assembly Language”, Symposium on Principles of Programming Languages (POPL), 1998, pp. 85-97, 13 pages. |
Necula et al., “CCured: Type-Safe Retrofitting of Legacy Software”, ACM Transactions on Programming Languages and Systems, vol. 27, No. 3, May 2005, pp. 477-526, 48 pages. |
Necula, George C. and Peter Lee, “Safe Kernel Extensions Without Run-Time Checking”, Proceedings of the Second Symposium on Operating Systems Design and Implementation (OSDI'96), Seattle, WA., Oct. 28-31, 1996, pp. 229-243, 15 pages. |
OSdata.com, “Maintenance and Administration,” retrieved at <<http://www.osdata.com/holistic/maintain/maintain.htm>> on Apr. 14, 2011, 8 pages. |
Parno et al., “Memoir: Practical State Continuity for Protected Modules”, Proceedings of the IEEE Symposium on Security and Privacy, IEEE, May 2011, 16 pages. |
Piotrowski, Matt and Anthony D. Joseph, “Virtics: A System for Privilege Separation of Legacy Desktop Applications”; EECS Department, University of California at Berkeley, Technical Report No. UCB/EECS-2010-70, May 13, 2010, 21 pages. |
Porter et al., “Rethinking the Library OS from the Top Down”, ASPLOS' 11, Mar. 5-11, 2011, Newport Beach, California, pp. 291-304, 14 pages. |
Portoles et al., “IEEE 802.11 Downlink Traffic Shaping Scheme for Multi-User Service Enhancement”, 14th IEEE 2003 International Symposium on Personal, Indoor and Mobile Radio Communications, PIMRC2003, Sep. 9-10, 2003, pp. 1712-1716, 5 pages. |
Price, Daniel and Andrew Tucker, “Solaris Zones: Operating System Support for Consolidating Commerical Workloads,” Proceedings of the Large Installation Systems Administration Conference (LISA), Sun Microsystems, Nov. 14-19, 2004, vol. 4, pp. 243-256, 14 pages. |
Provos, Niels, “Improving Host Security with System Call Policies”, Proceedings of the 12th Conference on USENIX Security Syposium, (SSYM), 2003, 15 pages. |
Puder, Arno, “Extending Desktop Applications to the Web”, retrieved at <<http://www.puder.org/publications/dorea04.pdf>> on Mar. 4, 2009, San Francisco State University, Computer Science Department, 6 pages. |
Purdy, Kevin, “Google Chrome as Future Operating System”, published Sep. 22, 2008, retrieved at <<http://lifehacker.com/5053069/google-chrome-as-future-operating-system>> on Mar. 4, 2009, 1 page. |
Quinn et al., “Neutron Sensitivity of High-Speed Networks”, IEEE Transactions on Nuclear Science, vol. 57, No. 6, Dec. 2010, pp. 3547-3552, 6 pages. |
Resig, John, “The Browser Operating System”, published Feb. 22, 2009, retrieved at <<http://ejohn.org/blog/the-browser-operating-system/>> on Mar. 4, 2009, 5 pages. |
Rinard et al., “Enhancing Server Availability and Security Through Failure-Oblivious Computing”, Proceedings of Operating Systems Design and Implementation (OSDI), 2004, pp. 303-316, 14 pages. |
Robles, G., “Debian Counting”, retrieved at <<http://libresoft.dat.escet.urjc.es/debian- counting/>> on Mar. 4, 2009, Grupo de Sistemas y Comunicaciones, Universidad Rey Juan Carlos, Mostoles, Madrid, Spain, 2004-2005, 1 page. |
Roscoe et al., “Hype and Virtue”, Proceedings of the 11th USENIX Workshop on Hot Topics in Operating Systems, Aug. 2007, 6 pages. |
Sabin, Todd, “Strace for NT”, retrieved at <<http://www.securityfocus.com/tools/1276>> on Mar. 4, 2009, SecurityFocus, 2007, 1 page. |
Sahita, Ravi and Divya Kolar, “Beyond Ring-3: Fine Grained Application Sandboxing”, W3C Workshop on Security for Access to Device APIs from the Web, Dec. 10-11, 2008, 5 pages. |
Sapuntzakis et al., “Virtual Appliances for Deploying and Maintaining Software”, Proceedings of the Large Installation Systems Administration Conference, Oct. 2003, 15 pages. |
Sapuntzakis et al., “Optimizing the Migration of Virtual Computers”, Proceedings of the 5th Symposium on Operating Systems Design and Implementation (OSDI), Dec. 9-11, 2002, pp. 377-390, 15 pages. |
Sedayao, Jeff, “Enhancing Cloud Security Using Data Anonymization”, Intel White Paper, Jun. 2012, 8 pages. |
Cardinal, Chris, “Live from CES: Hands on With Vista—Vista by the Numbers, A Developer Tells All”, Presentation at Gear Live, Jan. 8, 2006, retrieved at <<http://gearlive.com/news/article/live-from-ces-hands-on-with-vistamdashvista-by-the-numbers-0108051321>> on Mar. 24, 2016, 3 pages. |
Celesti et al., “Improving Virtual Machine Migration in Federated Cloud Environments”, Second International conference on Evolving Internet, Sep. 2010, pp. 61-67, 7 pages. |
Chahal et al., “Testing Live Migration with Intel Virtualization Technology FlexMigration”, Intel Information Technology, White Paper, Jan. 2009, 12 pages. |
Chang et al., “User-level Resource-constrained Sandboxing”, Proceedings of the 4th Conference on USENIX Windows Systems Symposium, vol. 4, Aug. 2000, 11 pages. |
Charles, “Mark Russinovich: Inside Windows 7”, Jan. 14, 2009, retrieved at <<https://channe19.msdn.com/Shows/Going+Deep/Mark-Russinovich-Inside-Windows-7>> on Jan. 31, 2012, 12 pages. |
Chen et al., “Setuid Demystified”, Proceedings of the 11th USENIX Security Symposium, Aug. 2002, 20 pages. |
Chen, Brad, “Native Client: A Technology for Running Native Code on the Web”, retrieved at <<http://google-code-updates.blogspot.com/2008/12/native-client-technology-for-running.html>> on Mar. 4, 2009, Google Code Blog, Dec. 8, 2008, 21 pages. |
Cheriton, David R. and Kenneth J. Duda, “A Caching Model of Operating System Kernel Functionality”, Proceedings of the 1st USENIX Symposium on Operating Systems Design and Implementation, Nov. 1994, 15 pages. |
Chernoff, Anton and Ray Hookway, “Digital FX132 Running 32-Bit x86 Applications on Alpha NT”, retrieved at <<http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.21.8607>>, Proceedings of the USENIX Windows NT Workshop, Seattle, WA., Aug. 1997, 8 pages. |
Chiueh et al., “Integrating segmentation and paging protection for safe, efficient and transparent software extensions”, Proceedings of 17th ACM Symposium on Operating Systems Principles (SOPS '99), published as Operating Systems Review, vol. 34, No. 5, Dec. 1999, pp. 140-153, 14 pages. |
Christodorescu et al., “Cloud Security Is Not (Just) Virtualization Security”, CCSW'09, Nov. 13, 2009, Chicago, Illinois, 6 pages. |
“Sun Bytecode Verifier Vulnerability”, Sun Security Bulletin #00218, The U.S. Department of Energy Computer Incident Advisory Center Information Bulletin No. M-060, Mar. 19, 2002, 5 pages. |
Clark et al., “Live Migration of Virtual Machines”, Proceedings of Networked Systems Design and Implementation (NSDI), 2005, pp. 273-286, retrieved at <<http://www.cl.cam.ac.uk/research/srg/netos/papers/2005-migration-nsdi-pre.pdf>>, 14 pages. |
Condit et al., “Beta-Diversity in Tropical Forest Trees”, retrieved at <<www.sciencemag.org>> on Apr. 4, 2008, Science, vol. 295, Jan. 25, 2002, pp. 666-669, 4 pages. |
Cox et al., “A Safety-Oriented Platform for Web Applications”, Symposium on Security and Privacy, 2006, pp. 350-364, 15 pages. |
Douceur et al., “Leveraging Legacy Code to Deploy Desktop Applications on the Web”, Proceedings of the 8th USENIX Symposium on Operating Systems Design and Implementation, Dec. 2008, pp. 339-354, 23 pages. |
Eiraku et al., “Fast Networking with Socket-Outsourcing in Hosted Virtual Machine Environments”, Proceedings of the 24th ACM Symposium on Applied Computing, Mar. 8-12, 2009, 8 pages. |
Engler et al., “Exokemel: An Operating System Architecture for Application-Level Resource Management”, Proceedings of the 15th ACM Symposium on Operating Systems Principles, Dec. 1995, vol. 29, No. 5, pp. 251-266, 16 pages. |
Erlingsson et al., “XFI: Software Guards for System Address Spaces”, Proceedings of the 7th USENIX Symposium on Operating Systems Design and Implementation (OSDI), 2006, pp. 75-88, 14 pages. |
Farsi, M., “CANOpen communication”, Proceedings of Drives and Controls, INSPEC Abstract Retrieved on-line from Dialog, Mar. 5-7, 1996, 1 page. |
Fischer, Donald, “Red Hat Enterprise Linux 4 Application Compatability”, Feb. 2005, 12 pages. |
Ford, Bryan and Russ Cox, “Vx32: Lightweight User-level Sandboxing on the x86”, Massachusetts Institute of Technology, 14 pages. |
Ford, Bryan, “VXA: A Virtual Architecture for Durable Compressed Archives”, Computer Science and Artificial Intelligence Laboratory, MIT, Mass., 14 pages. |
Franke et al., “Fuss, Futexes and Furwocks: Fast Userlevel Locking in Linux”, Proceedings of the Ottawa Linux Symposium, Jun. 26-29, 2002, Ottawa, Ontario, Canada, pp. 479-495, 19 pages. |
Garfinkel et al., “Flexible OS Support and Applications for Trusted Computing”, Proceedings of the 9th Conference on Hot Topics in Operating Systems, May 2003, 6 pages. |
Garfinkel et al., “Terra: A Virtual Machine-Based Platform for Trusted Computing”, Proceedings of the Nineteenth ACM symposium on Operating Systems Principles, Oct. 19-22, 2003, 14 pages. |
Garfinkel, Tal, “Traps and Pitfalls: Practical Problems in System Call Interposition Based Security Tools”, Proceedings of the Network and Distributed Systems Security Symposium, Feb. 2003, pp. 163-176, 14 pages. |
Garfinkel et al., “Ostia: A Delegating Architecture for Secure System Call Interposition”, Computer Science Department, Stanford University, CA, Proceedings of Network and Distributed Systems Security Symposium, 2004, pp. 187-201, 15 pages. |
Goldberg et al., “A Secure Environment for Untrusted Helper Applications (Confining the Wily Hacker)”, Proceedings of the Sixth USENIX UNIX Security Symposium, San Jose, CA., Jul. 1996, 14 pages. |
Gregg et al., “Overview of IBM zEnterprise 196 I/O subsystem with focus on new PCI Express infrastructure”, IBM, J. Res. & Dev. vol. 56, No. 1/2 Paper 8, Jan./Mar. 2012, pp. 8:1-8:14, 14 pages. |
Non-Final Office Action dated Mar. 17, 2015 from U.S. Appl. No. 13/196,235, 45 pages. |
Response filed Jun. 17, 2015 to the Non-Final Office Action dated Mar. 17, 2015 from U.S. Appl. No. 13/196,235, 24 pages. |
Final Office Action dated Sep. 22, 2015 from U.S. Appl. No. 13/196,235, 43 pages. |
Response filed Feb. 5, 2016 to the Final Office Action dated Sep. 22, 2015 from U.S. Appl. No. 13/196,235, 30 pages. |
Pre-Brief Conference Request and Notice of Appeal filed Feb. 22, 2016 from U.S. Appl. No. 13/196,235, 7 pages. |
Advisory Action dated Feb. 22, 2016 from U.S. Appl. No. 13/196,235, 3 pages. |
Pre-Brief Appeal Conference Decision dated Mar. 17, 2016 from U.S. Appl. No. 13/196,235, 2 pages. |
Non-Final Office Action dated Feb. 28, 2014 from U.S. Appl. No. 13/215,244, 20 pages. |
Response filed May 28, 2014 to the Non-Final Office Action dated Feb. 28, 2014 from U.S. Appl. No. 13/215,244, 12 pages. |
Final Office Action dated Sep. 26, 2014 from U.S. Appl. No. 13/215,244, 18 pages. |
Response filed Nov. 26, 2014 to the Final Office Action dated Sep. 26, 2014 from U.S. Appl. No. 13/215,244, 14 pages. |
Advisory Action dated Dec. 12, 2014 from U.S. Appl. No. 13/215,244, 8 pages. |
Non-Final Office Action dated Feb. 23, 2015 from U.S. Appl. No. 13/215,244, 22 pages. |
Response filed Jun. 20, 2015 to the Non-Final Office Action dated Feb. 23, 2015 from U.S. Appl. No. 13/215,244, 15 pages. |
Final Office Action dated Oct. 1, 2015 from U.S. Appl. No. 13/215,244, 20 pages. |
Response and After Final Consideration Program Request filed Jan. 15, 2016 to the Final Office Action dated Oct. 1, 2015 from U.S. Appl. No. 13/215,244, 17 pages. |
Advisory Action and After Final Consideration Program Decision dated Feb. 24, 2016 from U.S. Appl. No. 13/215,244, 9 pages. |
Non-Final Office Action dated Jul. 30, 2013 from U.S. Appl. No. 13/314,512, 35 pages. |
Response filed Apr. 2, 2014 to the Non-Final Office Action dated Jul. 30, 2013 from U.S. Appl. No. 13/314,512, 10 pages. |
Final Office Action dated Jul. 15, 2014 from U.S. Appl. No. 13/314,512, 29 pages. |
Response filed Jan. 15, 2015 to the Final Office Action dated Jul. 15, 2014 from U.S. Appl. No. 13/314,512, 12 pages. |
Non-Final Office Action and Examiner Initiated Interview Summary dated Jun. 25, 2015 from U.S. Appl. No. 13/314,512, 18 pages. |
Response filed Nov. 13, 2015 to the Non-Final Office Action dated Jun. 25, 2015 from U.S. Appl. No. 13/314,512, 8 pages. |
Final Office Action dated Dec. 14, 2015 from U.S. Appl. No. 13/314,512, 14 pages. |
International Search Report and Written Opinion dated Oct. 30, 2012 from PCT Patent Application No. PCT/US2012/027635, 9 pages. |
Office Action and Search Report dated Nov. 18, 2015 from Taiwan Patent Application No. 101112828, 7 pages. |
Response filed Feb. 18, 2016 from Taiwan Patent Application No. 101112828, 20 pages. |
Supplementary Search Report dated Oct. 27, 2014 from European Patent Application No. 12752531.9, 9 pages. |
Response filed May 15, 2015 to the Official Communication dated Nov. 13, 2014 from European Patent Application No. 12752531.9, 18 pages. |
International Preliminary Report on Patentability dated Jun. 26, 2014 from PCT Patent Application No. PCT/US2012/067662, 8 pages. |
Stokely, Murray and Chern Lee, “The FeeBSD Handbook,” 3rd Edition, vol. 1: User's Guide, FreeBSD Mall, Inc., Brentwood, CA, 2003, 408 pages. |
Non-Final Office Action dated Dec. 22, 2014 from U.S. Appl. No. 13/331,078, 15 pages. |
Response filed May 22, 2015 to the Non-Final Office Action dated Dec. 22, 2014 from U.S. Appl. No. 13/331,078, 9 pages. |
Final Office Action dated Jul. 16, 2015 from U.S. Appl. No. 13/331,078, 10 pages. |
Response filed Dec. 31, 2015 to the Final Office Action dated Jul. 16, 2015 from U.S. Appl. No. 13/331,078, 9 pages. |
Non-Final Office Action dated Feb. 1, 2016 from U.S. Appl. No. 13/331,078, 9 pages. |
Non-Final Office Action dated Nov. 6, 2013 from U.S. Appl. No. 13/345,031, 23 pages. |
Response filed May 4, 2014 to the Non-Final Office Action dated Nov. 6, 2013 from U.S. Appl. No. 13/345,031, 8 pages. |
Notice of Allowance dated Jul. 8, 2014 from U.S. Appl. No. 13/345,031, 5 pages. |
International Search Report and Written Opinion dated Mar. 20, 2013 from PCT Patent Application No. PCT/US2012/067660, 10 pages. |
First Office Action and Search Report dated Jan. 28, 2015 from China Patent Application No. 201210537282.X, 14 pages. |
Response filed Aug. 12, 2015 to the First Office Action dated Jan. 28, 2015 from China Patent Application No. 201210537282.X, 9 pages. |
Second Office Action dated Nov. 30, 2015 from China Patent Application No. 201210537282.X, 7 pages. |
Response filed Feb. 4, 2016 to the Second Office Action dated Nov. 30, 2015 from China Patent Application No. 201210537282.X, 7 pages. |
Supplementary European Search Report dated May 7, 2015 from European Patent Application No. 12858489.3, 3 pages. |
Official Communication dated May 27, 2015 from European Patent Application No. 12858489.3, 5 pages. |
Response filed Jul. 2, 2015 to the Official Communication dated May 27, 2015 from European Patent Application No. 12858489.3, 11 pages. |
Voluntary Amendment filed Nov. 9, 2015 from Japan Patent Application No. 2014-547269, 7 pages. |
First Office Action and Search Report dated Jan. 26, 2016 from China Patent Application No. 201280011551.7, 12 pages. |
Request for Examination and Voluntary Amendment filed Jan. 30, 2015 from Japan Patent Application No. 2013-556669, 8 pages. |
International Search Report and Written Opinion dated Mar. 11, 2013 from PCT Patent Application No. PCT/US2012/067662, 11 pages. |
First Office Action and Search Report dated Dec. 3, 2014 for China Patent Application No. 201210533610.9, 10 pages. |
Response filed Apr. 20, 2015 to the First Office Action dated Dec. 3, 2014 from China Patent Application No. 201210533610.9, 9 pages. |
Second Office Action dated Aug. 21, 2015 from China Patent Application No. 201210533610.9, 10 pages. |
Response filed Oct. 21, 2015 to the Second Office Action dated Aug. 21, 2015 from China Patent Application No. 201210533610.9, 9 pages. |
Supplementary European Search Report dated Sep. 3, 2014 from European Patent Application No. 12858587.4, 3 pages. |
Official Communication dated Oct. 21, 2014 from European Patent Application No. 12858587.4, 7 pages. |
Response to Official Communication dated Feb. 23, 2015 from European Patent Application No. 12858587.4, 13 pages. |
Notice of Allowance dated Mar. 7, 2016 from U.S. Appl. No. 12/834,895, 44 pages. |
Notice of Allowance and Examiner-Initiated Interview Summary dated Apr. 5, 2016 from U.S. Appl. No. 13/323,465, 21 pages. |
Third Office Action dated Feb. 26, 2016 from China Patent Application No. 201210533610.9, 8 pages. |
Gupta et al., “Difference Engine: Harnessing Memory Redundancy in Virtual Machines”, Proceedings of the 8th USENIX Symposium on Operating Systems Design and Implementation, Dec. 8-10, 2008, 14 pages. |
Hac, Anna., “Network Time Slots Allocation by using a Time Multiplexed Switch in a Telecommunications Architecture”, Singapore ICCS '94, Nov. 14-18, 1994, pp. 1149-1153, 5 pages. |
Haff, Gordon, “RingCube brings ‘containers’ to the client”, CNET News, Feb. 6, 2009, 3 pages. |
Harren, Matthew and George C. Necula, “Using Dependent Types to Certify the Safety of Assembly Code”, Static Analysis Symposium (SAS) 2005, pp. 155-170, 16 pages. |
Helander, Johannes, “Unix under Mach: The LITES Server”, Helsinki University of Technology, Helsinki, Dec. 30, 1994, 71 pages. |
Howell et al., “Living Dangerously: A Survey of Software Download Practices”, Microsoft Research, May 2010, 16 pages. |
Hwang et al., “ATM-based plug-and-play technique for in-home networking”, Electronic Letters, Oct. 29, 1988, vol. 34, No. 22, pp. 2088-2090, 3 pages. |
“Intel Cloud Builders Guide: Cloud Design and Deployment on Intel Platforms”, retrieved at <<www.intel.com/en_US/Assets/PDF/general/icb_ra_cloud_computing_Parallels_TCP.pdf>> on Dec. 7, 2011, 19 pages. |
Jackson et al., “Protecting Browser State from Web Privacy Attacks”, Proceedings of WWW 2006, May 23-26, 2006, Edinburgh, Scotland, pp. 737-744, 8 pages. |
Jobs, Steve, “Keynote Address”, Apple Worldwide Developers Conference, Aug. 2006, 3 pages. |
Karmel, Anil, “Building YOURcloud: The Federal Government's first Secure Hybrid Community Cloud”, retrieved at <<http://govmarkcouncil.com/presentations/event112912/Anil_Karmel.pdf>> on Oct. 30, 2013, RightPath, 39 pages. |
Karthik, P. and Krishna Kumar, “A Secure Access Code Technique for Remote Data Integrity on Public Cloud”, International Journal of Compter Applications, vol. 77, Issue 14, Sep. 2013, pp. 26-31, 6 pages. |
Keetch, Tom, “Escaping from Protected Mode Internet Explorer,” Verizon Business, retrieved at <<https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=keetch+escaping+from+protected+mode+internet+explorer+>>, 47 pages. |
Kiciman, Emre and Benjamin Livshits, “AjaxScope: A Platform for Remotely Monitoring the Client-Side Behavior of Web 2.0 Applications”, SOSP 2007, Oct. 14-17, 2007, Stevenson, WA., 14 pages. |
Ko et al., “TrustCloud: A Framework for Accountability and Trust in Cloud Computing”, Jul. 8, 2011, IEEE World Congress, 5 pages. |
Kobayashi et al., “Quick Reboot-based Recovery for Commodity Operating Systems in Virtualized Server Consolidation”, retrieved at <<http://eurosys2010-dev.sigops-france.fr/workshops/IIDS2010/iids2010-7.pdf>>, Feb. 2010, Association for Computing Machinery, 6 pages. |
Kozuch, Michael and M. Satyanarayanan, “Internet Suspend/Resume”, Fourth IEEE Workshop on Mobile Computing Systems and Applications, Callicoon, NY, Jun. 2002, 8 pages. |
Leslie et al, “The Design and Implementation of an Operating System to Support Distributed Multimedia Applications”, IEEE Journal on Selected Areas in Communications, May 1996, 18 pages. |
Levasseur et al., “Pre-Virtualization: Slashing the Cost of Virtualization”, Technical Report 2005-30, Nov. 2005, 14 pages. |
Litzkow et al., “Checkpoint and Migration of UNIX Processes in the Condor Distributed Processing System”, University of Wisconsin Madison, Apr. 1997, 9 pages. |
Livshits, Benjamin and Emre Kiciman, “Doloto: Code Splitting for Network-Bound Web 2.0 Applications”, Microsoft Research, 25 pages. |
Lorch, Jacob R. and Smith, Alan Jay, “The VTrace Tool: Building a System Tracer for Windows NT and Windows 2000”, MSDN Magazine, vol. 15, No. 10, 2000, pp. 86-90, 93-94, 96-98, 101-102, 12 pages. |
Loscocco, Peter and Stephen Smalley, “Integrating Flexible Support for Security Policies into the Linux Operating System”, Proceedings of the 2001 USENIX Annual Technical Conference, Feb. 2001, 62 pages. |
Love, Robert, “Get on the D-BUS”, Linux Journal, retrieved at <<http://www.ee.ryerson.ca/-courses/coe518/LinuxJournal/elj2005-130-D-BUS.pdf>> on Jun. 18, 2006, 5 pages. |
Malan et al., “DOS as a Mach 3.0 Application”, Proceedings of the USENIX Mach Symposium, Nov. 1991, 14 pages. |
Mallipeddi et al., “Ensemble Strategies in Compact Differential Evolution”, 2011 IEEE Congress of Evolutionary Computation, CEC 2011, Jun. 5-6, 2011, pp. 1972-1977, 6 pages. |
Marosi et al., “Using Virtual Machines in Desktop Grid Clients for Application Sandboxing”, CoreGRID Technical Report, No. TR-140, Aug. 31, 2008, 13 pages. |
Masti et al., “An Architecture for Concurrent Execution of Secure Environments in Clouds”, Proceedings of the ACM Cloud Computing Security Workshop, Nov. 8, 2013, 12 pages. |
McCamant, Stephen and Greg Morrisett, “Evaluating SFI for a CISC Architecture”, 15th USENIX Security Symposium, 2006, 16 pages. |
McIlroy, M.D., “Mass Produced Software Components”, Software Engineering, NATO Science Committee, Jan. 1969, pp. 138-150, 12 pages. |
Response filed Jan. 10, 2014 to the Final Office Action dated Sep. 10, 2013 from U.S. Appl. No. 12/972,081, 30 pages. |
Non-Final Office Action dated Apr. 7, 2014 from U.S. Appl. No. 12/972,081, 37 pages. |
Response filed Jul. 7, 2014 to the Non-Final Office Action dated Apr. 7, 2014 from U.S. Appl. No. 12/972,081, 22 pages. |
Notice of Allowance dated Jul. 31, 2014 from U.S. Appl. No. 12/972,081, 15 pages. |
U.S. Appl. No. 61/449,072 titled “Library-Operating-System Packaging-Model Scenarios,” filed Mar. 3, 2011 by inventors Hunt et al., 35 pages. |
Non-Final Office Action dated Dec. 21, 2012 from U.S. Appl. No. 13/107,973, 15 pages. |
Response filed Apr. 22, 2013 to the Non-Final Office Action dated Dec. 21, 2012 from U.S. Appl. No. 13/107,973, 14 pages. |
Final Office Action dated Jun. 10, 2013 from U.S. Appl. No. 13/107,973, 24 pages. |
Response filed Sep. 24, 2013 to the Final Office Action dated Jun. 10, 2013 from U.S. Appl. No. 13/107,973, 14 pages. |
Non-Final Office Action dated Oct. 25, 2013 from U.S. Appl. No. 13/107,973, 13 pages. |
Response filed Jan. 23, 2014 to the Non-Final Office Action dated Oct. 25, 2013 from U.S. Appl. No. 13/107,973, 15 pages. |
Non-Final Office Action dated May 21, 2014 from U.S. Appl. No. 13/107,973, 13 pages. |
Response filed Oct. 21, 2014 to the Non-Final Office Action dated May 21, 2014 from U.S. Appl. No. 13/107,973, 10 pages. |
Notice of Allowance dated Nov. 21, 2014 from U.S. Appl. No. 13/107,973, 40 pages. |
Supplemental Notice of Allowance dated Mar. 13, 2015 from U.S. Appl. No. 13/107,973, 27 pages. |
Notice of Allowance dated Aug. 28, 2015 from U.S. Appl. No. 13/107,973, 36 pages. |
Notice of Allowance dated Sep. 30, 2015 from U.S. Appl. No. 13/107,973, 15 pages. |
Notice of Allowance dated Nov. 24, 2015 from U.S. Appl. No. 13/107,973, 9 pages. |
Notice of Allowance dated Jan. 22, 2016 from U.S. Appl. No. 13/107,973, 28 pages. |
Non-Final Office Action dated Apr. 8, 2013 from U.S. Appl. No. 13/196,235, 49 pages. |
Response filed Jul. 8, 2013 to the Non-Final Office Action dated Apr. 8, 2013 from U.S. Appl. No. 13/196,235, 20 pages. |
Non-Final Office Action and Examiner Initiated Interview Summary dated Oct. 15, 2013 from U.S. Appl. No. 13/196,235, 39 pages. |
Applicant Summary of Interview with Examiner and Response filed Mar. 17, 2014 to the Non-Final Office Action dated Oct. 15, 2013 from U.S. Appl. No. 13/196,235, 30 pages. |
Final Office Action dated Apr. 9, 2014 from U.S. Appl. No. 13/196,235, 47 pages. |
Response filed Jun. 12, 2014 to the Final Office Action dated Apr. 9, 2014 from U.S. Appl. No. 13/196,235, 23 pages. |
Non-Final Office Action dated Jul. 3, 2014 from U.S. Appl. No. 13/196,235, 38 pages. |
Applicant Initiated Interview Summary dated Sep. 24, 2014 from U.S. Appl. No. 13/196,235, 3 pages. |
Applicant Summary of Interview with Examiner and Response filed Oct. 3, 2014 to the Non-Final Office Action dated Jul. 3, 2014 from U.S. Appl. No. 13/196,235, 28 pages. |
Final Office Action dated Nov. 21, 2014 from U.S. Appl. No. 13/196,235, 31 pages. |
Applicant Summary of Interview with Examiner and Response filed Mar. 2, 2015 to the Final Office Action dated Nov. 21, 2014 from U.S. Appl. No. 13/196,235, 22 pages. |
Preliminary Amendment filed Feb. 13, 2012 from U.S. Appl. No. 13/323,562, 3 pages. |
Non-Final Office Action and Examiner-Initiated Interview Summary dated May 8, 2013 from U.S. Appl. No. 13/323,562, 30 pages. |
Applicant Summary of Interview with Examiner and Response filed Aug. 21, 2013 to the Non-Final Office Action dated May 8, 2013 from U.S. Appl. No. 13/323,562, 37 pages. |
Von-Final Office Action dated Oct. 23, 2013 from U.S. Appl. No. 13/323,562, 24 pages. |
Response filed Jan. 23, 2014 to the Non-Final Office Action dated Oct. 23, 2013 from U.S. Appl. No. 13/323,562, 25 pages. |
Notice of Allowance and Examiner-Initiated Interview Summary dated May 9, 2014 from U.S. Appl. No. 13/323,562, 22 pages. |
Supplemental Notice of Allowability dated Feb. 11, 2015 from U.S. Appl. No. 13/323,562, 22 pages. |
Notice of Allowance dated Oct. 9, 2015 from U.S. Appl. No. 13/323,562, 21 pages. |
Corrected Notice of Allowability dated Oct. 29, 2015 from U.S. Appl. No. 13/323,562, 7 pages. |
Notice of Allowance dated Mar. 11, 2016 from U.S. Appl. No. 13/323,562, 13 pages. |
Preliminary Amendment filed Feb. 13, 2012 from U.S. Appl. No. 13/323,465, 3 pages. |
Non-Final Office Action dated Sep. 13, 2013 from U.S. Appl. No. 13/323,465, 37 pages. |
Applicant-Initiated Interview Summary dated Oct. 29, 2013 from U.S. Appl. No. 13/323,465, 3 pages. |
Applicant Summary of Interview and Response filed Dec. 30, 2013 to Non-Final Office Action dated Sep. 13, 2013 from U.S. Appl. No. 13/323,465, 18 pages. |
Final Office Action dated Mar. 12, 2014 from U.S. Appl. No. 13/323,465, 25 pages. |
Response filed Jun. 12, 2014 to the Final Office Action dated Mar. 12, 2014 from U.S. Appl. No. 13/323,465, 16 pages. |
Non-Final Office Action dated Mar. 26, 2015 from U.S. Appl. No. 13/323,465, 45 pages. |
Response filed Jun. 16, 2015 to the Non-Final Office Action dated Mar. 26, 2015 from U.S. Appl. No. 13/323,465, 17 pages. |
Final Office Action dated Jul. 22, 2015 from U.S. Appl. No. 13/323,465, 39 pages. |
Response filed Oct. 6, 2015 to the Final Office Action dated Jul. 22, 2015 from U.S. Appl. No. 13/323,465, 21 pages. |
Non-Final Office Action dated Mar. 12, 2013 from U.S. Appl. No. 13/372,390, 34 pages. |
Response filed May 30, 2013 to the Non-Final Office Action dated Mar. 12, 2013 from U.S. Appl. No. 13/372,390, 19 pages. |
Final Office Action dated Sep. 19, 2013 from U.S. Appl. No. 13/372,390, 41 pages. |
Response filed Jan. 21, 2014 to the Final Office Action dated Sep. 19, 2013 from U.S. Appl. No. 13/372,390, 15 pages. |
Non-Final Office Action dated Dec. 19, 2014 from U.S. Appl. No. 13/372,390, 45 pages. |
Response filed Jun. 18, 2015 to the Non-Final Office Action dated Dec. 19, 2014 from U.S. Appl. No. 13/372,390, 36 pages. |
Final Office Action dated Jul. 22, 2015 from U.S. Appl. No. 13/372,390, 31 pages. |
Response filed Oct. 21, 2015 to the Final Office Action dated Jul. 22, 2015 from U.S. Appl. No. 13/372,390, 18 pages. |
Final Office Action dated Apr. 5, 2016 from U.S. Appl. No. 13/215,244, 23 pages. |
Preliminary Report on Patentability dated Sep. 12, 2013 from PCT Patent Application No. PCT/US2012/027635, 6 pages. |
Notice of Allowance dated Nov. 1, 2016 from U.S. Appl. No. 12/463,892, 11 pages. |
Non-Final Office Action and Examiner-Initiated Interview Summary dated Oct. 28, 2016 from U.S. Appl. No. 13/196,235, 42 pages. |
Response filed Feb. 28, 2017 to the Non-Final Office Action dated Oct. 28, 2016 from U.S. Appl. No. 13/196,235, 31 pages. |
Non-Final Office Action dated Mar. 9, 2017 from U.S. Appl. No. 13/314,512, 30 pages. |
Notice on Grant dated Aug. 24, 2016 from Chinese Patent Application No. 2012-80011551.7, 4 pages. |
Communication pursuant to Rules 70(2) and 70a(2) EPC dated Nov. 13, 2014 from European Patent Application 12752531.9. 1 page. |
Response filed Nov. 9, 2016 to the Final Office Action dated Aug. 10, 2016 from U.S. Appl. No. 13/331,078, 10 pages. |
Notice of Allowance dated Dec. 6, 2016 from U.S. Appl. No. 13/331,078, 5 pages. |
Terminal Disclaimer Filed Mar. 24, 2016 from U.S. Appl. No. 13/372,390, 2 pages. |
Terminal Disclaimer Approved Mar. 24, 2016 from U.S. Appl. No. 13/372,390, 1 page. |
Notice of Allowance dated Sep. 2, 2016 from Japanese Patent Application No. 2013-556669, 3 pages. |
Office Action dated Aug. 2, 2016 from Mexican Patent Application No. MX/a/2014/007102, 2 pages. |
Fourth Office Action dated Aug. 11, 2016 from Chinese Patent Application No. 201210533610.9, 9 pages. |
Microsoft, “Windows Driver Kit (WDK)”, retrieved at <<http://microsoft.com/whdc/devtools/wdk/default.mspx?pf=true>> on Mar. 4, 2009, 2 pages. |
Smith, Roderick W., “Using QEMU for cross-platform development”, published Feb. 9, 2010, retrieved at <<www.ibm.com/developerworks/linux/library/l-qemu-development/?ca=drs->> on Feb. 11, 2011, 7 pages. |
Soltesz et al., “Container-based Operating System Virtualization: A Scalable, High-performance Alternative to Hypervisors”, Proceedings of the 2nd ACM SIGOPS/EuroSys European Conference on Computer Systems, Mar. 21-23, 2007, 13 pages. |
Spear et al., “Solving the Starting Problem: Device Drivers as Self-Describing Artifacts”, Proceedings of the EuroSys 2006 Conference, Apr. 18-21, 2006, 13 pages. |
NPL Search Results U.S. Appl. No. 13/196,235, Elsevier Eng. Info. Inc., 2013, 23 pages. |
Sugerman et al., “Virtualizing I/0 Devices on VMware Workstation's Hosted Virtual Machine Monitor”, Proceedings of the 2001 USENIX Annual Technical Conference, Jun. 25-30, 2001, 15 pages. |
Swift et al., “Improving the Reliability of Commodity Operating Systems”, Proceedings of Symposium on Operating Systems Principles (SOSP'03),Oct. 19-22, 2003, pp. 207-222, 16 pages. |
Szefer, Jakub and Ruby B. Lee, “A Case for Hardware Protection of Guest VMs from Compromised Hypervisors in Cloud Computing”, Proceedings of the Second International Workshop on Security and Privacy in Cloud Computing (SPCC 2011 ), Jun. 2011, 5 pages. |
Szefer et al., “Eliminating the Hypervisor Attack Surface for a More Secure Cloud”, Oct. 17-21, 2011, CCS'11, 12 pages. |
Ta-Min et al., “Splitting Interfaces: Making Trust Between Applications and Operating Systems Configurable”, Proceedings of the 7th symposium on Operating Systems Design and Implementation, Nov. 2006, 14 pages. |
Tan et al.; “iKernel: Isolating Buggy and Malicious Device Drivers Using Hardware Virtualization Support”, Proceedings of the Third IEEE International Symposium on Dependable, Autonomic and Secure Computing, 2007, 9 pages. |
Tanaka et al., “Run-time Updating of Network Device Drivers”, NBiS 2009—12th International Conference on Network-Based Information Systems, Aug. 19-21, 2009, pp. 446-450, 5 pages. |
Tridgell, Andrew, “Efficient Algorithms for Sorting and Synchronization”, PhD Thesis, Australian National University, Feb. 1999, 115 pages. |
Tucker, Andrew and Davis Comay, “Solaris Zones: Operating System Support for Server Consolidation”, Sun Microsystems, Nov. 2004, Virtual Machine Research and Technology Symposium, 2 pages. |
Vaarala, Sami, “Security Considerations of Commodity x86 Virtualization”, Helsinki University of Technology Telecommunications Software and Multimedia Laboratory, May 22, 2006, 150 pages. |
Vaughan-Nichols, Steven J., “New Approach to Virtualization Is a Lightweight”, IEEE, Computer, vol. 39, Issue 11, Nov. 2006, pp. 12-14, 3 pages. |
Verizon Wireless, “Escaping from Microsoft's Protected Mode Internet Explorer—Evaluating a potential security boundary”, White Paper, 2010, 8 pages. |
VMWare ThinApp, “Application Virtualization Made Simple”, retrieved at <<http://www.vmware.com/products/thinapp/overview.html>> on Aug. 29, 2012, 2 pages. |
Wahbe et al., “Efficient Software-Based Fault Isolation”, SIGOPS 1993, pp. 203-216, 14 pages. |
Waldspurger, Carl A., “Memory Resource Management in VMware ESX Server”, Proceedings of the Fifth Symposium on Operating Systems Design and Implementation (OSDI '02), Dec. 2002, pp. 181-194, 14 pages. |
Wang et al., “Protection and Communication Abstractions for Web Browsers in MashupOS”, SOSP'07, Oct. 14-17, 2007, 15 pages. |
Whitaker et al., “Denali: Lightweight Virtual Machines for Distributed and Networked Applications,” Proceedings of the USENIX Annual Technical Conference, Dec. 17, 2002, 14 pages. |
Whitaker et al., “Scale and Performance in the Denali Isolation Kernel”, Proceedings of the 5th USENIX Symposium on Operating Systems Design and Implementation, Dec. 9- 11, 2002, 15 pages. |
Witchel et al., “Mondrix: Memory Isolation for Linux using Mondriaan Memory Protection”, SOSP '05, Oct. 23-26, 2005, Brighton, UK, pp. 31-44, 14 pages. |
Wood et al., “CloudNet: Dynamic Pooling of Cloud Resources by Live WAN Migration of Virtual Machines”, VEE'11, Mar. 9-11, 2011, Newport Beach, California, 12 pages. |
Yee et al., “Native Client: A Sandbox for Portable, Untrusted x86 Native Code”, Proceedings of the 30th IEEE Symposium on Security and Privacy, May 17-20, 2009, 15 pages. |
Yu et al., “A Feather-weight Virtual Machine for Windows Applications”, VEE'06, Jun. 14-16, 2006, 11 pages. |
Zeldovich et al., “Making Information Flow Explicit in Histar”, Proceedings of the 7th USENIX Symposium on Operating Systems Design and Implementation, Nov. 2006, 16 pages. |
Zhang, Xianggang and Jinde Li, “A CORBA Trader-based Dynamic Binding Infrastructure in Pervasive Computing”, International Symposium on Pervasive Computing and Applications, 2006, pp. 12-16, 5 pages. |
Zhou et al., “Flexible On-Device Service Object Replication with Replets”, Proceedings of the 13th International Conference on World Wide Web, ACM, May 17-22, 2004, 12 pages. |
Response filed Sep. 19, 2016 to the Non-Final Office Action dated Apr. 19, 2016 from U.S. Appl. No. 12/463,892, 19 pages. |
Appeal Brief filed Nov. 1, 2016 from U.S. Appl. No. 13/215,244, 23 pages. |
Examiners Answer to Appeal Brief dated Feb. 24, 2017 from U.S. Appl. No. 13/215,244, 33 pages. |
Final Office Action dated Aug. 10, 2016 from U.S. Appl. No. 13/331,078, 10 pages. |
“Secunia Advisories: SA7587”, retrieved at <<http://secunia.com/advisories/7587/>> on Mar. 4, 2009 , Secunia 2002-2009, 4 pages. |
“Sun Ray Ultra-Thin Clients in Technical Computing”, retrieved at <<http://www.sun-rays.org/lib/hardware/sunray/ds/sunray_tc.pdf>>, Sun Microsystems, Inc., Datasheet, 2003, 2 pages. |
“The Dojo Offline Toolkit”, retrieved at <<http://dojotoolkit.org/offline>> on Mar. 4, 2009, The Dojo Foundation, 3 pages. |
“Thoughts on Intel's upcoming Software Guard Extensions (Part 2)”, published on Sep. 23, 2013, at <<http://sec.soup.io/post/348921006/Thoughts-on-Intels-upcoming-Software-Guard-Extensions>>, 10 pages. |
“User-Mode Driver Framework (UMDF)”, Oct. 6, 2010, Microsoft Windows, retrieved at <<http://msdn.microsoft.com/en-us/windows/hardware/gg463294.aspx>> on Aug. 4, 2011, 1 page. |
“What is Apple's New Secure Enclave and Why Is It Important?”, published on Sep. 18, 2013, retrieved from <<http://www.forbes.com/sites/quora/2013/09/18/what-is-apples-new-secure-enclave-and-why-is-it-important/2/>>, 5 pages. |
“What is JPC?”, retrieved at <<http://www-jpc.physics.ox.ac.uk/>> on Mar. 4, 2009, Oxford University, 2004-2007, 2 pages. |
“Windows User Mode Driver Framework”, from Wikipedia, the free encyclopedia, retrieved at <<http://en.wikipedia.org/wiki/User- Mode Driver Framework>> on Aug. 4, 2011, 2 pages. |
“WineHQ”, Wine Windows Compatibility Library, retrieved at <<http://www.winehq.org/>> on Mar. 4, 2009, 3 pages. |
Allen, Jennifer, “Windows Vista Application Development Requirements for User Account Control Compatability”, retrieved at <<https://msdn.microsoft.com/en-us/library/bb530410.aspx>>, Jun. 2007, 53 pages. |
Ammons et al., “Libra: A Library Operating System for a JVM in a Virtualized Execution Environment”, Proceedings of the 3rd International Conference on Virtual Execution Environments, Jun. 13-15, 2007, 11 pages. |
Anderson, Thomas E., “The Case for Application-Specific Operating Systems”, Proceedings of the 3rd Workshop on Workstation Operating Systems, Apr. 1992, 3 pages. |
Appavoo et al., “Providing a Linux API on the Scalable K42 Kernel”, Proceedings of the 2003 USENIX Annual Technical Conference, Jun. 9-14, 2003, 14 pages. |
“AWS CloudHSM”, retrieved at <<http://aws.amazon.com/cloudhsm/>> on Oct. 28, 2013, 5 pages. |
Azab et al., “SICE: A Hardware-Level Strongly Isolated Computing Environment for x86 Multi-core Platforms”, CCS11, Oct. 17-21, 2011, Chicago, Illinois, 14 pages. |
Bagchi, Susmit, “On Reliable Distributed IPC/RPC Design for Interactive Mobile Applications”, MEDES'10, Oct. 26-29, 2010, pp. 33-38, 6 pages. |
Barham et al., “Xen and the Art of Virtualization”, Proceedings of the 19th ACM Symposium on Operating Systems Principles, Oct. 19-22, 2003, 14 pages. |
Baumann et al., “The Multikernel: A New OS Architecture for Scalable MulticoreSystems”, Proceedings of the 22nd ACM Symposium on Operating Systems Principles, Oct. 11-14, 2009, 15 pages. |
Bershad et al., “Extensibility, Safety and Performance in the SPIN Operating System”, Proceedings of the Fifteenth ACM Symposium on Operating Systems Principles, Dec. 3, 1995, 17 pages. |
Bhattiprolu et al., “Virtual Servers and Checkpoint/Restart in Mainstream Linux”, SIGOPS Operating Systems Review, Jul. 2008, 10 pages. |
Bugnion et al., “Disco: Running Commodity Operating Systems on Scalable Multiprocessors”, ACM Transactions on Computer Systems, vol. 15, No. 4, Nov. 1997, 36 pages. |
“Amazon Elastic Compute Cloud (EC2)”, retrieved at <<http://www.maluke.com/blog/amazon-elastic-compute-cloud-ec2>> on Dec. 5, 2011, 2 pages. |
“Aquifer Application Services Platform Version 5.5”, retrieved at <<http://www.sysmanagement.com/enterpriseProducts/overview.aspx>> on Mar. 4, 2009, Systems Management Engineering 2003, 2 pages. |
“Browser Swallows OS”, retrieved at <<http://www.desktoplinux.com/news/NS2750645189.html>> on Mar. 4, 2009, Ziff Davis Enterprise Holdings Inc., Dec. 1, 2008, 3 pages. |
“CLOG Count Lines of Code”, retrieved at <<http://cloc.sourceforge.net/>> on Mar. 4, 2009, Northrop Grummam Corporation, Information Technology, IT Solutions, 2006-2009, 15 pages. |
“CVE-2003-0111”, retrieved at <<http://cve.mitre.org/cgi- bin/cvename.cgi?name=CAN-2003-0111>> on Mar. 4, 2009, Common Vulnerabilities and Exposures website, 2009, 1 page. |
“CVE-2007-0043”, retrieved at <<http://cve.mitre.org/cgi- bin/cvename.cgi?name=CVE-2007-0043>> on Mar. 4, 2009 , Common Vulnerabilities and Exposures website, 2009, 2 pages. |
“CWE-Common Weakness Enumeration”, retrieved at <<http://nvd.nist.gov/cwe.cfm>> on Mar. 4, 2009 , National Vulnerability Database, NIST, 3 pages. |
“Gears Improving Your Web Browser”, retrieved at <<http://gears.google.com/>> on Mar. 4, 2009, Google 2008, 1 page. |
“Internet Information Services 7.5”, retrieved at <<http://technet.microsoft.com/en-us/library/dd364124(WS.10).aspx>>, Mar. 24, 2009, 3 pages. |
“Mozilla: The browser as operating system”, Aug. 26, 2008, retrieved at<<http://www.mathewingram.com/work/2008/08/26/mozilla-the-browser-as-operating- system/>> on Mar. 4, 2009, 8 pages. |
“Open Source Software”, retrieved at <<http://sourceforge.net>> on Mar. 4, 2009, SourceForge, Inc., 1999-2009, 1 page. |
“Outsource Web Enabling your Legacy Applications to 02I”, retrieved at <<http://www.outsource2india.com/software/LegacySystems.asp>> on Mar. 4, 2009, Flatworld Solutions Company, 2008, 7 pages. |
“Safenet Hardware Security Modules (HSMs)”, retrieved at <<http://www.safenet-inc.com/products/data-protection/hardware-security-modules-hsms/>> on Oct. 21, 2013, 9 pages. |
Lorch, Jacob R. and Alan Jay Smith, “Building VTrace, a Tracer for Windows NT and Windows 2000,” University of California, Berkeley, Computer Science Division (EECS), Report No. UCB/CSD-00/1093, Feb. 2000, 18 pages. |
Takahashi, Hidekazu, “Where is OS Heading Now?”, Nikkei Byte, Nikkei BP Publishing Co., Ltd., Sep. 22, 2003, No. 245, pp. 68-73, 9 pages. |
Aaraj et al., “Energy and Execution Time Analysis of a Software-based Trusted Platform Module,” IEEE 2007 Design, Automation & Test in Europe Conference & Exhibition, Apr. 16, 2007, pp. 1-6, 6 pages. |
Durahim et al., “Implementing a Protected Zone in a Reconfigurable Processor for Isolated Execution of Cryptographic Algorithms,” IEEE, 2009, International Conference on Reconfigurable Computing and FPGAs, Dec. 9, 2009, pp. 207-212, 6 pages. |
Brickell et al., “Direct Anonymous Attestation,” Proceedings of the 11th ACM Conferrence on Computer and Communications Security, ACM, 2004, 30 pages. |
Non-Final Office Action dated Apr. 19, 2016 from U.S. Appl. No. 12/463,892, 71 pages. |
Preliminary Amendment filed Apr. 5, 2016 from U.S. Appl. No. 15/071,101, 6 pages. |
Notice of Allowance dated May 19, 2016 from U.S. Appl. No. 13/107,973, 18 pages. |
Notice of Allowance dated Sep. 12, 2016 from U.S. Appl. No. 13/107,973, 13 pages. |
Appeal Brief filed Apr. 18, 2016 from U.S. Appl. No. 13/196,235, 52 pages. |
Response filed May 9, 2016 to the Final Office Action dated Dec. 14, 2015 from U.S. Appl. No. 13/314,512, 8 pages. |
Notice of Allowance dated May 9, 2016 from Taiwan Patent Application No. 101112828, 4 pages. |
Response filed Jun. 7, 2016 to First Office Action dated Jan. 26, 2016 from China Patent Application No. 2012-80011551.7, 10 pages. |
Office Action dated Mar. 9, 2016 from Japan Patent Application No. 2013-556669, 10 pages. |
Response filed May 2, 2016 to the Non-Final Office Action dated Feb. 1, 2016 from U.S. Appl. No. 13/331,078, 9 pages. |
Notice of Allowance dated Apr. 18, 2016 from China Patent Application No. 20120537282.X, 4 pages. |
Notice of Allowance dated Apr. 5, 2016 from U.S. Appl. No. 13/372,390, 24 pages. |
“Page Table”, Oxford Dictionary of Computer Science, 7th Edition, 2016, pp. 395, 1 page. |
Number | Date | Country | |
---|---|---|---|
20160026488 A1 | Jan 2016 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 13107973 | May 2011 | US |
Child | 14850557 | US |