This can relate to systems, methods, and computer-readable media for monitoring third party software runtime operations without kernel mode access.
Telemetry intercept and analysis tools exists for analyzing run time of applications to assist users in debugging code, evaluating performance of the code, and engaging in other quantifiable metrics. These tools may be readily adapted for use with several different programming languages, particularly programming languages that use standard libraries and provide kernel access. However, programming languages that do not use standard libraries nor provide kernel access, the tool may not be readily adapted to work with such programming languages.
Accordingly, what is needed is a way for telemetry intercept and analysis tools to work with programming languages that do not use standard libraries nor provide kernel access.
Systems, methods, and computer-readable media for telemetry intercept and analysis tools to work with programming languages that do not provide kernel access are provided. Programming languages such as Go do not call standard library functions during operation of the application executable. A library constructor can be used to modify the application executable so that telemetry data can be obtained by an interception library even though the application executable does not call any functions in the interception library.
This Summary is provided to summarize some example embodiments, so as to provide a basic understanding of some aspects of the subject matter described in this document. Accordingly, it will be appreciated that the features described in this Summary are merely examples and should not be construed to narrow the scope or spirit of the subject matter described herein in any way. Unless otherwise stated, features described in the context of one example may be combined or used with features described in the context of one or more other examples. Other features, aspects, and advantages of the subject matter described herein will become apparent from the following Detailed Description, Figures, and Claims.
The above and other aspects of the disclosure, its nature, and various features will become more apparent upon consideration of the following detailed description, taken in conjunction with the accompanying drawings, in which like reference characters may refer to like parts throughout, and in which:
Systems, methods, and computer-readable media for are provided and described with reference to
Embodiments discussed herein refer to an intelligent library constructor that enables intra memory patches to be inserted into executable code so that a software product that provides observability or runtime analysis of the executable code can intercept and analyze operation of the code. These software products might include security products, performance monitoring products, network analytics products, and so on. As a specific example, the intelligent library constructor may operate in connection with a telemetry interception and analysis platform (TIAP), which is briefly discussed below and described in applicant's commonly owned U.S. Pat. Nos. 11,151,009, 11,0366,606, and 11,243,861, the disclosures of which are incorporated by reference herein in their entireties. Embodiments discussed herein provide a mechanism for the TIAP to monitor system calls executed in a programming language that does not use a native library (e.g., libc). An example of such a programming language can include Golang or Go.
Golang (“Go”) executables do not use a standard library (e.g., libc) for most interactions with the underlying operating system. In contrast to using a native library, Go includes a copy of its own runtime library in each executable. The Go linker extracts the functions that are required by the application and includes these functions in the final output executable. Go can produce nearly statically linked executables, which can make it difficult for the TIAP to monitor Go executables. This is in contrast with applications or programming languages that use a standard library (e.g., libc.so). With applications that use a standard library, the TIAP can use an interception library that takes precedence over the standard library so that when function calls are made, the calls use the interception library, which enables the TIAP to monitor the application. Thus, when an application is programmed with a language such as Go, there is no standard library to be supplanted with a proprietary library that enables TIAP monitoring. Embodiments discussed herein provide a way for the TIAP to monitor Go executables even though there is no standard library to be supplanted.
It should be noted that although many embodiments discussed herein are made with reference to the Go programming language, Go is not the only language that does not use a standard library. Any other language that operates independently of a standard library, is a substantially statically linked executable, or executes without providing kernel mode access can be used in connection with embodiments discussed herein.
The intelligent library constructor enables the TIAP to locate all system call functions within the Go executable and insert an inline patch corresponding to one or more or all of the system call functions within memory of a not yet started executable. The patches can temporarily transfer control from the Go executable to an interception library so that telemetry events can be uploaded to the TIAP for analysis. Additional details of how patches are implemented are discussed below. The TIAP is now discussed.
As defined herein, an alert is an abnormal condition that has been identified by an analytics service, based on a rule defined in an alert grammar.
As defined herein, an alert grammar includes a set of rules or parameters that are used to classify telemetry events obtained by a telemetry interception and analysis platform (TIAP) during operation of an application. The set of rules can be part of default set of rules provided by the TIAP, generated by a customer using the TIAP, heuristically learned rules created by machine learning, or any combination thereof. Other grammars may be used by the TIAP such as, for example, insight grammars, performance grammars, and warning grammars. Yet other grammars can include compliance grammars that search telemetry data for specific items such as, for example, credit card numbers, personally identifiable information (PII), addresses, bank accounts, etc.
As defined herein, an analytics service refers to one of many services handled by the TIAP and operative to perform analytics and telemetry events collected from an application. The analytics service may reference an alert grammar, insight grammar, performance grammar, or any other grammar to evaluate collected telemetry events.
As defined herein, an application refers to a top hierarchy level of monitoring by the TIAP. An application includes one or more component groups and represents a complete implementation of a top-line business application.
As defined herein, an API Server is a service that implements endpoint APIs (REST-based) for use by user interface (UI) and command line interface (CLI) tools.
As defined herein, a blueprint service analyzes recorded telemetries for one or more components and creates alert rules based on what has been seen. The blueprint service can be used to define behavioral blueprints that describe the intended behavior of an application (e.g., how an application should be behave, what it should do, and what it should not do).
As defined herein, a component is abstract definition of a single type of process known to the platform (e.g., “database” or “web server”). An application can operate using one or more components.
As defined herein, a component instance is an individual concrete example of a component, running on a specific host or a virtual machine (e.g., “database running on myserver.corp.com”). One or more instances may occur for each component.
As defined herein, a container is a standard unit of software that packages up code and all its dependencies so the application run quickly and reliably from one computer environment to another. Sometimes, a container is referred to as a pod.
As defined herein, a mutated container is a container that has had existing contents included therein that are modified, replaced, removed, or added to from its original form. Webhook embodiments discussed herein are able to modify containers to provide modified containers.
As defined herein, a component group is a collection of all instances of a given component (e.g., “all databases in application x”).
As defined herein, a common vulnerability and exposure (CVE) is a system that provides a reference-method for publicly known information-security vulnerabilities and exposures. The National Cybersecurity FFRDC, operated by the Mitre Corporation, maintains the system, with funding from the National Cyber Security Division of the United States Department of Homeland Security. The system was officially launched for the public in September 1999. The Security Content Automation Protocol uses CVE, and CVE IDs are listed on MITRE's system as well as in the US National Vulnerability Database.
As defined herein, a CVE service is a platform service that periodically ingests CVE metadata and analyzes if any components are vulnerable to any known CVEs.
As defined herein, a dashboard can refer to a main screen of a TIAP portal UI.
As defined herein, an event service is a service that responds to telemetry event submissions using a remote call (e.g., gRPC or representational state transfer (REST)) and stores those events in an events database.
As defined herein, a housekeeping service is a service that periodically removes old data from logs and databases.
As defined herein, an insight is a noncritical condition that has been identified by the analytics service, based on a rule defined in a grammar. Insights are typically suggestions on how performance or other software metrics can be improved, based on observed telemetries.
As defined herein, Kubernetes refers to an open-source orchestration system for automating software deployments, scaling, and management.
As defined herein, a native library refers to a collection of components or code modules that are accessed by the application. The native library may be standard library that is commonly accessed by various programming languages.
As defined herein, an interception library is created by the TIAP and is used to intercept API calls by the application and record the API calls as a telemetry event. The interception library can trampoline the original API call to the native library. The interception library can include the same functions of the native library or subset thereof and any proprietary APIs, but is associated with analysis platform and enables extraction of telemetry events related to operation of the application. When a function is called in the interception library, the telemetry event collection is performed and actual code in the native library is accessed to implement the function call.
As defined herein, a TIAP portal may refer to a Software as a Service (SaaS) or on-premise management server that host TIAP, including the dashboard and other TIAP UI screens, as well as any services required to set up installation of TIAP runtime code to monitor a customer's application, collect telemetry from the customer's application, and analyze collected telemetry.
As defined herein, a metric can refer to telemetry data collected that includes a numeric value that can be tracked over time (to form a trend).
As defined herein, a policy may be a security ruleset delivered to the runtime during initial communication/startup that describes desired tasks that are to occur when certain events are detected (e.g., block/allow/warn).
As defined herein, TIAP runtime or Runtime refers to a code module that runs within a loaded process' (component instance) address space and provides TIAP services (e.g., telemetry gathering, block actions, etc.).
As defined herein, a system loader is software tool that combines a customer's executable code with the runtime code to produce a binary output that is then used in place of the original executable code.
As defined herein, a trampoline or trampoline function is a runtime internal technique of hooking/intercepting API/library calls used by a component.
As defined herein, a trend is a change of metric values over time.
As defined herein, a vulnerability report associates a known vulnerability (e.g., a CVE) with a function, module, or object called by an application.
As defined herein, a warning is an abnormal condition that may not be critical, that has been detected by the analytics service, based on a rule defined in an alert/insight/warning grammar.
The operating system 130 may include a UNIX-like operating system, such as the Linux operating system, iOS operating system, Mac OSX operating, or Windows operating system. Operating system 130 can include a kernel 131 and operating system modules 132. Operating system modules 132 can include components of operating system 130 other than kernel 131.
Other modules can include TIAP runtime module 110, telemetry module 112, instrumentation module 116, and applications module 120. Application module 120 may include computer-readable code for executing an application running on computer 100. The code may include executable code (e.g., a .exe file). Application module 120 may include a native library 125 (e.g., Libc.so) that is used during operation of the application. Native library 125 may include one or more components 126.
TIAP runtime module 110 may include computer readable code for executing operation of telemetry module 112 and instrumentation module 116, referred to herein as TIAP runtime or TIAP runtime code. TIAP runtime module 110 may include the TIAP runtime operative to collect telemetry events and provide the collected telemetry events to TIAP portal 160 via Internet 150.
Telemetry module 112 can include computer-readable code that is operative to intercept application programming interface (API) calls originating from the application at the library level within the software stack and capture such calls as telemetry events that are provided to TIAP 160 for further analysis. Telemetry module 112 may include an interception library 114. Interception library 114 may include interception code and trampoline functions corresponding to each component or API called by the application. The TIAP runtime can interpose on any function in any library used by any component by inserting interception hooks or trampoline functions into the application's dependency chain (e.g., IAT/PLT/GOT). These trampoline functions redirect control flow from the native library API functions to the TIAP runtime, which then collects information about the API request (parameters, call stack information, performance metrics, etc.) as telemetry events, and then passes the original call to the native library. The interception code is responsible for collecting the parameters needed for the telemetry event. Telemetry events can be continually monitored by the TIAP runtime. Each component instance is continually monitored by the TIAP runtime and the desired telemetry events are captured and sent to TIAP portal 160 Telemetry events can be collected into batches and periodically sent to the TIAP portal for later analysis. The batching capability of the platform runtime can be further subdivided into prioritized batches—this entails creating multiple event queues that are sent with varying priorities to TIAP portal 160. This subdivision is useful in scenarios where the runtime is only allotted a small amount of CPU/memory/network bandwidth (as to not interfere with efficient application execution). In the case where events may be dropped (due to not having sufficient resources), the TIAP runtime can instead collect a count of “missed events” that can be later communicated to the management platform when resources are available. This count provides the system administrator with a sense of how many events may be missing from the overall report provided by TIAP portal 160.
Instrumentation module 116 may be operative to load or package the necessary files and/or library associated with an application with files and/or library associate with platform 118 into a loader, launcher, or executable file that enables telemetry module 112 to extract telemetry events from the application during TIAP runtime.
TIAP portal 160 may perform analytics on the collected telemetry events and generate visuals for display to users of computer 100 based on the analytics obtained from the analysis of the application.
Go module 180 may be responsible for determining which Go calls require temporary transfer of control to interception library 114 so that telemetry data can be obtained during execution of the Go executable.
Starting with block 202, an application can make an application programming interface (API) call (e.g., open, write, read, etc.). That call is passed to block 204 where a library (e.g., Libc.so) is accessed to execute the API call. The library can contain subroutines for performing system calls or other functions. At block 206, a system call is invoked. The system call may be a modification of an existing system call generally available from the operating system. For example, the system call may be a modified version of the ioctl system call. The system call may be invoked by filling up register values then asserting a software interrupt that allows trapping into kernel space. For example, block 206 may be performed by a C language program that runs in the Linux operating system. The C language program may move the system call's number into the register of a processor and then assert an interrupt. The invocation of the system call can be made using a programming language's library system call interface. In one embodiment, the invocation of the system call is made using the C programming language's library system call interface.
In block 208, the invocation of the system call executes a trap to enter the kernel space. The system call dispatcher gets the system call number to identify the system call that needs to be invoked.
In block 210, the system call dispatcher vectors branches to the system call, which in the example of
The TIAP is purpose-built to automatically observe cloud native applications, employing a language-agnostic library that can be deployed to any Kubernetes cluster with a single command-no sidecars, agents, or kernel modules required. By correlating static container scans with runtime analysis, the TIAP enables developers to resolve issues faster with rich remediation guidance.
The TIAP according to embodiments discussed herein can intercept operations originating from the application at the library level of the software stack. This is in contrast with conventional hook operations that intercept at the system call level or somewhere within the kernel space, typically accessed using Extended Berkeley Packet Filter (eBPF). Hooks using eBPF are often subject to various issues such as software updates to parts of the software stack that require special permissions, administrator permissions, or lack of API assurance that can result in breaking the application. Therefore, to eliminate such issues, embodiments discussed herein intercept at the library level. Referring now to
The interception library can include the same functions of the native library or subset thereof and any proprietary APIs, but is associated with analysis platform and enables extraction of telemetry events related to operation of the application. When a function is called in the interception library, the telemetry event collection is performed and actual code in the native library is accessed to implement the function call. Telemetry events are shown in block 310. The interception library can enable all parameters of the API call to be recorded in a telemetry event. For example, if the API call is an OPEN command, the parameters can include file path, permissions, identification information, environmental information, etc. Since applications are continually monitored using embodiments discussed herein, telemetry events are constantly being collected and provided to the TIAP portal (e.g., portal 160). For example, the telemetry events may be queued at block 312 and batch transmitted to the analysis platform (block 316) each time a timer elapses at decision block 314. The TIAP portal can be run locally on the same device that is running the application or the analysis platform can be run remotely from the device running the application. In the remote case, the telemetry events may be transmitted via a network connection (e.g., the Internet) to the TIAP portal.
Telemetry events collected by the TIAP runtime can be buffered in memory into a lock-free queue. This requires little overhead during loaded program execution as the telemetry upload occurs less frequently. The size of the event queue is determined by a setting periodically refreshed by the TIAP portal. The customer is permitted to set the amount of memory and CPU overhead that the TIAP runtime can consume. The TAP runtime can adjust the size of the event queue and the quality of data measured accordingly. In the case that events need to be dropped due to exceeding the allowed CPU/memory thresholds, a simple counter can be maintained to reflect the number of dropped events. When there is adequate resource available, the number of missed events is communicated to the TIAP platform. The buffer can be flushed periodically, depending on size and overhead constraints. This is done at event submission time (e.g., any event can potentially trigger a buffer flush). During flush, the events in the queue are batched and sent to an event service in the TIAP portal using REST or gRPC. The TIAP runtime can also support a high-priority queue, for urgent events/alerts.
The TIAP runtime may be required to handle special cases. The special cases can include handling signals, handling dynamic library loads, and handling fork and exec functions. Signal handling is now discussed. Telemetry events occurring during signal handling have to be queued in a way that uses no signal-unsafe APIs; this is the exception to the rule that that any event can cause a buffer flush. All trappable signals are caught by the runtime. The runtime increments counts of received signals for periodic upload to the management portal. In order to support the component's own use of signals, the runtime retains a list of any handlers the component registers using sigaction and invokes those handlers upon receiving a signal. This may require removing a stack frame before calling the handler.
The runtime intercepts calls to the dlsym, dlopen, and other dynamic library load routines. These loaded libraries are subject to the same telemetry grammar treatment as during initial load. Calls to these functions also may result in telemetry events of their own.
The fork and exec functions require special treatment. Fork can result in an exact copy of the process being created, including a TIAP runtime state. In order to support fork properly, the fork call is intercepted and the following sequence of operations is performed: a fork telemetry event is sent (if such a telemetry grammar exists), the child's event queues are cleared, and the child's instance ID is regenerated. This sequence of steps ensures that the TIAP portal sees a clean set of telemetries from the child. The exec function requires other special treatment. On exec, the following sequence of operations is performed: the original arguments to exec are preserved, the arguments to exec are changed to point to the current program (e.g., the program that is already loaded), with no command line arguments and an environment variable named DF_EXEC set to the original arguments supplied by the caller. As a result, the operating system re-executes the same program, causing the runtime to restart itself. Upon seeing DF_EXEC set, the runtime will launch the original program defined in the call to exec, with runtime protection.
Immediately after the application call is sent to block 304, the original call command is invoked at block 306. Calling the original command is necessary to allow the application to operate as intended. The operations in blocks 304, 306, 310, 312, 314, and 316 may be executed by TIAP runtime module 110 or telemetry module 112. The original call command accesses the native library at block 307. This leads to a system call at block 308, and then access to the kernel at block 309.
It should be understood the flowchart can be implemented in any process being used by a customer application product. For example, the flowchart can be implemented in a web server, a database, middleware, or any other suitable platform being used by the application. That is, the same interception library can be used in all processes. This enables a history of the stack trace to be captured and analyzed.
Loader 440 can enable application 410 to load code in a library to be executed. For example, assuming that interception library is not present and the call CMD1 411 is called. The loader would load the code 421 in native library so that the CMD1 operation could be executed. However, in the embodiment illustrated in
An alternative to using a preloader is to use an integrated loader (e.g., integrated loader 500) for each application. This integrated loader can eliminate a few potential issues that may exist with using the preloader. For example, a customer could turn the preloader off, which would prevent telemetry collection because the interception library would not be accessed first. Another potential issue that can arise using the preloader is that other resources may use it, thereby potentially causing who goes first management issues. In addition, if an application uses static linking (e.g., where code in the native library is copied over to the application), the pre-loader will not work.
The system loader is a program that is built on the TIAP and downloaded by a user to their workstation or build infrastructure machine. The system loader is typically part of a command line interface tool. In some embodiments, command line interface (CLI) tool 620 can be custom built for each customer as it will load components for that customer only. In other embodiments, CLI tool 620 is generic tool provided to each customer that enables the customer to build a different interception library for each application. The TIAP 630 can create the custom CLI tool (containing the system loading function) by using a link kit installed in the portal. The link kit includes a set of object files (.o files) that are linked against a customer-specific object file built on demand (from a dynamic code generation backend placing various statements into a .c file and compiling to an object file). This produces a customer specific CLI tool that contains all information required to produce a binary keyed to the customer that downloaded the CLI tool. This per-customer approach to CLI tool generation eliminates the need for the customer/user to enter many tenant-specific details when loading components. The CLI tool may also contain any SSL certificates or other items required for a secure transaction with the management portal. In other approaches, the SSL certificates can be obtained from an “API token,” which substitutes embedding the SSL certificate into CLI tool 620. The CLI tool can provide several functions: loading, showing/managing applications and components, showing telemetry events, showing audit logs, and showing alerts and metrics At a high level, the CLI tool offers a command line interface to much of the same functionality offered by the web UI provided by the TIAP portal.
During system loading, CLI 620 can receive build artifact 610 and generate interception library 640 by developing interception code for each component in the build artifact 610. The interception code can include telemetry grammars that define which events should be monitored for and recorded. The interception code can also include a trampoline function that transfers the application call to the native library so that the original call by the application is executed as intended. That is for each component of an application, application executable, or build artifact, a TIAP based interception code is generated and included in interception library 640. For example, if first command code is being processed, CLI 620 can send that first command to platform portal 630 via remote call 625. Portal 630 can assign that command a component ID 635 and pass it back down to CLI 620. This way when telemetry events are collected, the component ID will match with the component ID assigned by portal 630. CLI 620 can populate interception library 640 with each component of build artifact 610. When the interception library is complete, CLI 620 can provide the output to container 650, launcher 660, or integrated loader 670. Container 650 can be a class, a data structure, or an abstract data type whose instances are collections of other objects. Launcher 660 is akin to the preloader concept discussed above in connection with
Protection of non-executable artifacts is also possible. To protect interpreted scripts or languages, the system loader can provide a special launcher mode that produces a special binary containing only the TIAP runtime. When using launcher mode, the special binary executes a command of the customer's choice, as if the command being executed was already contained within the output. This allows for scenarios where interpreted languages are used and it is not determinable which interpreter may be present in the target (deployment) machine (as such interpreters may vary between the build environment and the deployment environment).
The CLI tool has various subcommands that are specified on the command line, such as ‘load’, ‘applications’, ‘components’, etc. The load subcommand can run in one of two modes: default and launcher. Each mode produces a different type of output file. In the default mode, which produces an integrated launcher of
A list of telemetry grammars is built into the loaded component. This occurs at application registration time (e.g., during system loading, when the component and application are being registered with the TIAP). The TIAP can provide a preconfigured set of interesting/well-known telemetry grammars that are automatically available as part of this transaction. Customers can override, customize, or remove any of these grammars using a user interface in a TIAP management portal (or the CLI tool). Customers can also define their own telemetry grammars, if they wish to collect additional telemetries not present in the TIAP common set. The default set of telemetry grammars is stored in the TIAP's configuration database, and cloned/copied for each customer as they register with TIAP; this allows the customer to make any customizations to the default set they wish, if desired. Each set of customer-specific telemetry grammars are stored with the customer data in the configuration database (albeit separate from the default set or other customers' sets).
In launcher mode, the input is not specified using the −i argument, but rather with a −I (capital I). Launcher mode may be akin to the pre-loader of
If the system loader is being run in default mode and a non-executable file is specified as an input, the system loader will abort and recommend launcher mode instead. If the system loader registers a component that already exists in the TIAP, the system loader will abort and inform the user of this.
During component registration, a set of telemetry grammars will be sent to the system loader from the TIAP. These telemetry grammars contain a list of the libraries and APIs that should be intercepted for this component.
Both system loading modes accept a-t argument that contains a freeform string to be interpreted by the platform as the build time tag. This will typically be a comma separated set of key value pairs that the customer can use to assign any metadata to this component. Note that build time tags are included in the determination of any duplicate components.
The TIAP runtime is executable code that runs at process launch. It is built as position-independent code (PIC) and/or position-independent executable (PIE), and self-relocates to a random virtual address immediately upon startup. The runtime first performs a self-integrity check (to the extent possible considering the platform in use), and then performs a one-time survey/data collection of the following information: platform query, kernel version, memory, CPU (number, type, and speed), NUMA information, distribution information, and network/hardware information. The runtime then performs a transaction with the TIAP portal, sending the aforementioned data as part of a “component start” event. The TIAP portal may reply to this event by (1) proceed with start or (2) do not start. Additionally, the TIAP portal can inform the component that the host software catalogue is out of date by returning such a status code along with the component start event reply.
A host software catalogue is a list of software packages and constituent files on the machine running the component, indexed by hostname and IP address. This information is periodically gathered and uploaded to the TIAP portal to assist with analytics (specifically a common vulnerabilities and exposures (CVE) service). This catalogue is periodically updated, and the TIAP portal will report back out of date if the catalogue does not exist at all, or if the component loading date is later than the last catalogue update time, or if a set age threshold is exceeded (typically set to 1 week by default). If the TIAP portal requests a new catalogue to be uploaded, the runtime will compile the catalogue in a background thread and upload it to the portal when complete (asynchronously, low priority thread). The runtime either then starts the loaded or launched program, or, if the environment DF_EXEC is set, the value of that environment variable's content is used as the launched command line, overriding any −I (launch command) arguments.
On startup, the TIAP runtime can act as a replacement for the system run-time link-editor. The run-time link-editor (“loader”) resolves symbols from required libraries and creates the appropriate linkages. The TIAP runtime can redirect any function names specified in the trampoline grammar to itself, resulting in the creation of a trampoline. A trampoline function takes temporary control over program code flow performs the desired telemetry collection, calls the original function, and then queues an event to the event queue (if the grammar specifies that the API return value or function timing information is to be collected—otherwise the event is sent before the original function is called).
Static binaries pose a different challenge in the sense that there are typically no imports listed in the executable header. The runtime must perform a “hunt and patch” operation, in an attempt to find the corresponding system call stubs that match the function listed in the telemetry grammar. This can involve the following extra steps: searching through memory regions marked executable for system call (syscall) instructions, handling polymorphic syscall instructions (syscall opcodes buried within other instructions; false positives), handling just in time compiled (JITed) code, and handling self-modifying code. JITed and self-modifying code can be detected by mprotect (2) calls-code behaving in this way will be attempting to set the +X bit on such regions. Certain well known languages that output code using these approaches can be handled by out-of-band knowledge (such as hand inspection or clues/quirks databases).
After a customer's product has been configured to operate with the TIAP, telemetry events can be collected. These events can be communicated to the TIAP using an event API. Each “instrumented” component of the customer's application may be able to access the event API to communicate events. The communicated events may be processed by an event service running on the TIAP. The event service can be implemented as a gRPC endpoint running on a server responsible for the component. When the TIAP runtime detects an event of interest, a gRPC method invocation is invoked on the event service. The TIAP runtime knows the server (and consequently, event service) it will communicate with as this information is hardcoded into the runtime during initial loading of that component. Certain common events may occur often (e.g., opening the same file multiple times). In this case, the component may submit a “duplicate event” message which refers to a previous event instead of a completely new event message. This reduces traffic to the server.
The telemetry grammars runtime can define a telemetry level for each component or component instance. The telemetry levels can be set one of many different levels (e.g., four different levels). Telemetry levels govern the quantity of events and data sent from the instance to the event service in the TIAP portal. Several different telemetry levels are now discussed. One telemetry level may be a zero or none level that enables the runtime to perform as a passthrough and sends only component start and exit events. Another level may be a minimal level in which the runtime sends only component start events, component exit events, metadata events, and minimal telemetry events. In this level, the runtime only communicates basic information such as the number of file or network operations/etc. Yet another level may be a standard level in which the runtime sends every type of event defined for the minimal level, plus events containing telemetry about the names of files being opened and lists of 5-tuple network connection information. In this level, file events will contain only a file name plus a count indicating the number of times that file was opened. Similarly, this level conveys the list of 5-tuples and a count of how many times that 5-tuple was seen. The standard level also sends event telemetry for the count of each 3rd party API used (count and type). Yet another level is the full level in which the runtime sends all events, including a separate event for each file and network access containing more information about the access, a separate event for each API access, etc. The full telemetry model may buffer events in the instance's filesystem locally before uploading many events in bulk (to conserve network bandwidth).
The telemetry levels can be configured in a variety of different ways. A default telemetry level can be set when the application or component is loaded. If desired any default telemetry level can be overridden at runtime by a runtime tag. The telemetry level can be set by an administrator using the TIAP portal. The administrator can override either of the above settings using a per-instance/component group/application/dashboard setting for the desired telemetry level. Telemetry levels are communicated back to the component multiplexed with the return status code for any event.
The telemetry events can be configured to adhere to a specific message structure. The message structure may be required to interface with the protocol buffers or Interface Definition Language (IDL) used by the event service. Each event can include two parts: an event envelope and an event body. The event envelope can include a header that contains information about the classification/type of the event, and information about the runtime that generated the event. The event body can include a structure containing the event information. This structure is uniquely formatted for each different type of event.
The event envelope can include several different fields. Seven fields are shown in the example pseudocode above. One field is the component_id field. This field includes the universally unique identifier (UUID) of the component making the event submission. This ID is created during system loader and remains constant for the lifetime of the component. Note that there can be multiple component instances with the same component ID. Another field is the event_id field. This is the UUID of the event being submitted. This ID is selected randomly at event creation time. Event IDs can be reused by setting a ‘duplicate’ flag. Another field is the uint64 timestamp field which represents of the number of seconds since the start of a component instance (e.g., standard UNIX time_t format) when the event occurred. Yet another field is the timestamp_us−uint64_t which is a representation of the number of microseconds in the current second since the start of the component instance (e.g., standard UNIX time_t format) when the event occurred. Another field is the duplicate field which is set to true to indicate this event is a duplicate of a previously submitted event, and varies only in timestamp. A build_tag field contains the build time tag assigned to the component submitting the event, if any. A runtime_tag field contains the runtime (environment variable sourced) tag assigned to the component instance submitting the event, if any.
If the duplicate field is set to 1, this indicates that the event with the supplied event_id has occurred again. In this scenario, the event service will ignore any other submitted values in the rest of the message, except for the updated/new timestamp values.
Many different types of telemetry events can be collected. Each of these event types can be processed by the event service running on the TIAP. Several event types are now discussed. One event type is a component start event, which is sent when the component starts. This event includes information about the component, runtime, host platform and library versions, and other environmental data. Component start events are sent after the runtime has completed its consistency checks and surveyed the host machine for infrastructure-related information.
The IDL shown above describes two enumerations used in this event type: architecture_type and OS. Architecture type is enumerated by a value indicating the platform of the runtime making the event submission. The OS is enumerated by a value indicating the operating system of the runtime making the event submission. The version and os_type fields are freeform strings. For example, on a Windows host, version might be set to “Windows Server 2019”. On a Linux host, version might be set to “5.2” (indicating the kernel version). The os_type on a Linux host might be sourced from the content of lsb_release and might contain “Ubuntu 18.04”, for example. The runtime will calculate the amount of time spent during component startup and report this in the start_time and start_time_us fields. This time represents the overhead induced by the platform during launch.
Another type of event is a component exit event. A component exit event is sent when the component exits (terminates). Component exit events are sent if the component calls exit(3) or abort(3), and may also be sent during other abnormal exit conditions (if these conditions are visible to the runtime). Component exit events have no event parameters or data other than the event envelope.
Another event type is a file event. A file event is sent when various file operations (e.g., open/close/read/write) occur. These are sent for individual operations, when the runtime is in maximum telemetry collection mode. No events are sent on other file operations. File open operations are used to discern component file I/O intent-based on the O_xxx flags to open(2), events may or may not be sent. Exec operations, while not specifically based on open(2), can be sent for components that call exec(3) using a process event.y.
Yet another event type is a bulk file event. A bulk file event can be sent periodically when the runtime is in minimal telemetry collection mode or higher. It can contains a list of files opened plus the count of each open (e.g., “opened/etc/passwd 10 times”). Multiple files can be contained in a bulk file event.
Network events are yet another event type. Network events can be sent when various network operations (e.g., listen/accept/bind) occur. These are sent for individual operations, when the runtime is in maximum telemetry collection mode. Network events can be sent under the following conditions: inbound connections and outbound connections. An inbound connection event can be sent when the component issues a system call (e.g., the bind(2) system call). Outbound Connections—An outbound connection event can be sent when the component issues a connect system call (e.g., connect(2) system call).
The runtime will fill a NetworkEventBody message with the fields defined above. Protocol numbers are taken from a socket system call (e.g., socket(2) system call) and defined in various protocols. The TIAP portal or command line interface is responsible for converting the protocol numbers to readable strings. Address family information is also taken from a system call (e.g., system(2) call) and correspond to AF_* values from socket.h. The local_address and remote_address fields contain up to 16 bytes of local and remote address information (to accommodate large address types such as IPv6). If shorter address sizes are used, the unused bytes are undefined. It should be noted that all fields are populated on a best-effort basis. In certain circumstances, it is not possible for the runtime to detect some of the parameters required. In this case, the runtime will not supply any value for that field (and the field will default to protobuf's default value for that field type).
Bulk network events are yet another type of telemetry events. Bulk network events can be sent periodically when the runtime is in minimal telemetry collection mode or higher. These events can contain a list of 5-tuple network connection events (e.g., connect from local 1.2.3.4:50 TCP to 4.5.6.7:80). Multiple 5-tuple network connection events can be contained in a bulk network event.
Network change events are another example of telemetry events. Network change evens can be sent when an IP address on the machine changes. This event is also sent by the runtime during component start to let the management portal know which IP addresses the system is currently using. Network change events are sent by the runtime when an network change has been detected on the host. This is a periodic/best-effort message and these events may not be delivered immediately upon network state change. Network changes can include addition or removal of an interface, addition or removal of an IP address to an existing interface, or an alteration of a network's media type. A network change event summarizes the current state of all interfaces on the host. This simplifies the logic required by the API and analytics service as only the latest network change event needs to be examined in order to determine the current state, with the slight drawback of having to re-send information for unchanged interfaces.
Memory events are another example of telemetry events. Memory events can be sent when various memory operations (e.g., mprotect/mmap with unsafe permissions) occur. Memory events can be sent when a component attempts to assign an invalid permission to a region of memory. For example, the event may be sent when attempting to set writable and executable memory simultaneously or attempting to set writable permission on code pages. Memory events are not sent for ‘normal’ memory operations like malloc(2) or free(2). This is due to the volume of ordinary memory events that occur with great frequency during normal component operation.
Depending on the type of memory event, the runtime may or may not be able to compute values for all the fields described above. In this case, the default protobuf values for those data types can be used.
Process events are another example of telemetry type. Process events can be sent when process related operations such as fork/exec or library loads occur. The runtime sends a process event when any of the following occur: the process forks using a fork call (e.g., fork(2)), the process executes using any of the exec*(2) or posix_spawn(2) system calls, or the process loads a new library using a open system call (e.g., dlopen(2)). A process event contains an identifier corresponding to the type of event that occurred, with additional information for execute and library load events.
The info field contains value data if event_type is ExecEvent or LibraryEvent. It is undefined for ForkEvent style process events. The info field contains the name of the executed process plus command line parameters for ExecEvent events, and the fully qualified pathname for LibraryEvent events.
Metadata events are another example of a telemetry type. Metadata events can be sent at periodic intervals to update the management portal with information about memory and CPU usage. Metadata events are periodic events sent from the runtime that contain metrics that are counted by the runtime but that might not necessarily result in alerts being generated. Generally, metadata events are events that contain data that do not fit into other event categories. These metrics can include current process memory usage, current OS-reported CPU usage, number of signals received by the process, TIPA runtime overhead (CPU/memory), and total number of events sent to the event service.
It should be understood that the foregoing IDL definitions are not exhaustive and that other event IDL definitions are possible based on telemetry gathered using embodiments discussed herein.
Third party API usage events are another telemetry type and can be sent when the component makes use of a monitored third party API (e.g., typically CSP-provided APIs, like S3, RDS, etc).
TIAP 700 can be implemented as a multitenant SaaS service. This service contains all the TIAP platform software components. It is anticipated that some customers may desire to host parts or all of the SaaS portal in their own datacentre. To that end, a single-tenant version of the TIAP portal services can be made available as appliance virtual machine images. For example, the appliance image can be an .OVF file for deployment on a local hypervisor (for example, VMware vSphere, Microsoft Hyper-V, or equivalent), or as an Amazon Web Service Amazon Machine Image (AMI). The appliance images are periodically updated and each deployed appliance can optionally be configured to periodically check for updated appliance code.
API service 736 can implement a core set of APIs used by consumers of TIAP 700. For example, API service may enable user interface 722, a command line application tool, or any customer-written applications that interface with TIAP 700. In some embodiments, API service 736 may function as an API server. API service 736 can be in Node.js using a Sail JS MVC framework. Services provided by API service 736 can be implemented as REST APIs and manage many different types of entities stored in an event database (e.g., clickhouse 742). One such entity can include applications, where service 736 retrieves application information from a primary DB (database 744) based on various parameters (application name, for example). Another entity can be components in which server 736 retrieves component group information from the primary DB (database 744) based on various parameters (component ID, for example). Yet another entity can include instances in which service 736 retrieves instance information from the primary DB (database 744) based on various parameters (component ID and hostname, for example). Another entity can include events in which service 736 retrieves event information from the Events DB (ClickHouse 742) based on various parameters (component or application ID plus event type, for example).
API service 736 can also provide REST APIs to manage alert and insight entities stored in an analytics database (not shown). An alert entity API can retrieve alerts that have been deposited by analytics service 737 into an analytics database (not shown). An insight API can retrieve insights (analysis items) that have been generated by analytics service 737.
API service 736 can also provide REST APIs to manage the entities stored in a CVE database. A CVE API can produce a list of CVEs of components that are vulnerable.
API service 736 can provide provides REST APIs to manage the entities stored in a user database. A users API can provide user accounts, including saved thresholds and filters, and other UI settings. A role API can provide group roles, including role permissions.
REST calls to API service 736 can require an API key. API keys are JWTs (JSON Web Tokens) that grant access to the bearer for a particular amount of time. JWTs generated by the API keys are assigned by the authentication service during logon (for the browser/UI based application) and can also be manually created for use with the CLI (users may do this in ‘Account Settings’ in the UI). If desired, the generation of the JWTs can be performed elsewhere as is known in the art. In addition to the UI and the CLI tool, customers may develop their own applications that interface with the platform. In these scenarios, a “push” or “callback” model is used with the customer's API client (e.g., the application the customer is developing). API service 736 allows for a customer-supplied REST endpoint URL to be registered, along with a filter describing which events the customer's application has interest in. When events of these types are generated, the API server will make a REST PUT request to the customer's endpoint with the event data matching the filter supplied. To safeguard against misconfiguration or slow endpoints causing a potential DoS, successive failures or slow callbacks will result in the callback being removed from the API server, and a log message will be generated in the system log. The API server will also rate limit registration requests. API clients written in this fashion may de-register at any time using the same URL they registered with using the API server's de-registration API. Any registered API client may also be de-registered in the UI (XXX—Where?) or via the CLI tool.
Event Service 734 collects event telemetry from components 710. As explained above, each component has been instrumented to supply telemetry event information to TIAP 700. Upon receiving an event (or multiple events), event service 734 converts the event body into a record that is placed into the Events DB on the ClickHouse 742. Event service 734 can receive events via the Internet.
Analytics Service 737 can periodically survey the events collected by event service 734 and stored in the Events DB and attempts to gather insights based on the events that have been collected. Analytics service 737 is responsible for producing all alerts in the platform, as well as any suggested/remedial corrective tasks. Analytics service 737 gathers events and performs analysis on a continual basis. Analytics service 737 can apply grammars to the collected events to determine whether an alert should be generated. Analytics service 737 can also apply various machine learning models to determine if a pattern of events is detected, and whether this pattern should be alerted. Any insight or alerts that are generated can be stored as a record in the analytics DB (e.g., Postgres 744). The analytics DB is queried by API service 736 when determining if an alert or insight is to be rendered to clients.
CVE Service 740 identifies which CVEs the components have known vulnerabilities. CVE service 740 can include CVEs that are created and maintained by TIAP 700. CVE service 740 can use a CVE database, which can be populated from a CVE pack. For example, the CVE database may include a snapshot or copy of various CVE databases that are updated on demand or at regular intervals. CVE service 740 can retrieve a list of CVEs from the CVE database. CVE service 740 periodically scans the event database and determines if any components are vulnerable to CVE. The CVE packs (database dumps) can be created manually by staff operating TIAP 700. This is a manual effort since CVE information is not released/published in a fashion that can be automatically queried. CVE susceptibility can be displayed in a UI hierarchy (e.g., CVE susceptibility is shown based on whatever view is currently active in the UI).
A housekeeping service (not shown) periodically performs cleanup of old data that is no longer required, including audit log data (after archival has been performed or at customer request), old telemetry events (retention time is per-customer specific), old alerts/insights (retention time is per-customer specific), and user accounts that have expired from any linked directory services.
TIAP 700 can maintain several databases in databases 744. An event database can contain all the telemetry received from all loaded applications/components, for all customers. The data in the events database is deposited by the event service and queried by the analytics, CVE, API, and blueprinting services. An insights/alerts database can contain all alerts and insights discovered by the analytics service, as it periodically analyzes data in the events database. Insights/alerts are deposited into the database along with information identifying which component instance (or application) the alert/insight pertains to. An audit log database contains a record of all platform actions performed by a user, for all users in a customer. These entries are generated by the API service as auditable events (changes, etc.) are made using any API offered by the API service. This also includes login/log out events and user profile related events (password changes, etc.). A user database contains information about local users defined for a tenant that are known to the platform. The user database also stores API tokens generated by users that are used by the API service for authentication. A configuration database stores any per-customer configuration information not previously described. This includes any information relating to third party integrations. The configuration database also stores portal-wide configuration used by TIAP systems administrators/operations teams.
The portions of the Go runtime that are linked into each executable contain various locations where system calls are made to the operating system. These locations can broadly be categorized as (1) locations in the runtime responsible for making system calls directly and on behalf of the application and (2) locations in the runtime that make system calls for internal use by the runtime itself.
The first category can include a set of functions (e.g., any number of functions depending on the Go version used) that are called by higher level application programming interfaces (APIs) in the Go runtime. For example, the Go function to open a file, os.Open( ), will eventually call one of several (e.g., four or six) system call (syscall) dispatcher functions. The various dispatcher functions function identically except that they accept and process different numbers of API arguments.
The first category can also include certain standard library (e.g., libc) functions that Go executables must use. This can include functions in the “user” package as well as the “net” package. When Go applications make use of these packages, Go dynamically links to the standard library (e.g., libc) to access a fixed number of functions from the library. Dynamically linking to the standard library (e.g., libc), even for limited use, provides the TIAP the ability to load its libdf.so instrumentation library. Thus, although none of the override functions defined in TIAP runtime will be called by Go, an interception library constructor 810 is called before the Go application begins execution.
Library constructor 810 is responsible for enabling the TIAP to obtain telemetry data from a Go application. Library constructor 810 can include container call identifier 812, which can locate—in memory—all call functions within Go application 850. The call functions may include system call functions. Execution of library constructor 810, and the fact that the Go application has not yet begun execution, gives the interception library (e.g., libdf.so) the opportunity to locate the system call dispatcher functions within the Go executable, since the interception library is loaded into the Go executable's memory address space. This can be accomplished in process 1000 of
It should be understood that the steps in
Referring now back to
Mechanically, patching a compiled executable involves overwriting the first bytes of a function with a “jump” instruction that transfers control to the location designated by the patch (e.g., the interception library). The call function that caused a jump of control from the Go executable to the interception library maintains access to the original system context (i.e., the call function has access to the arguments provided by the application to the desired system call). This information is used by the interception library to generate one or more telemetry events (for later upload to the TIAP). Upon completion, the interception library returns control to the Go executable, at or adjacent to implementation of the patched function.
Patching overwrites at least one of the original instructions in the Go executable. As such, these overwritten instructions are “replayed”. This replay can be controlled by replay module 816. Replay module 816 may conduct a sequence of operations illustrated in process 1100 of
It should be understood that the steps in
Library constructor 810 can include stack module to assist Go in managing its stack size. Go manages its stack size via function preamble/epilogues that rebase the stack size upon each function call. For example, if the stack currently in use by the executing thread has 1 KB remaining space, and the function being called requires 2 KB stack storage space, the function's preamble will make a call to the Go runtime to expand the size of the stack before the function executes. Since the Go runtime garbage collects each object it manages, it must know where object references are pointing to. Go does this via dereferencing pointers in the stack; this means that all stack reallocations must be done from Go code itself; resizing the Go stack is not possible from the interception library. This can become problematic since the required stack size is not known for the interception library. Thus, even if the calling thread's Go stack could be changed from the interception library (which, as stated before, it cannot be), there would be no way to know how large to resize the stack to. Without a way to resize the current thread's stack, stack overruns and application crashes are possible. Stack module 818 can dynamically account for different stack sizes by using stack swizzle and stack unswizzle commands.
During a patching function, instructions copied to the utility page are prepended with a stack swizzle. A stack swizzle temporarily switches to an alternate stack of sufficient size so that the operations in the interception library can occur without the need to resize the Go stack. This can be performed by recording the current stack pointer (this will be the current stack location of the Go application's thread of execution) and allocating a sufficiently large stack area from the operating system. While it is true that the exact stack size may not be known at this time, allocating a sufficiently large stack (e.g., 4 MB), is typically enough. Then, the recorded stack pointer can be placed into the new stack area. This may be done to preserve the location in a safe place, as registers may be subsequently rendered useless via calls to the interception library. The current thread's stack pointer can be set to one location after the saved stack pointer from the previous step.
Similarly, a stack unswizzle operation can be performed as follows. Upon return from interception library, the stack pointer can be set to one location past the previously saved Go stack pointer (this is done automatically by the CPU and the typical function calling convention). Then, atomically, the stack pointer is restored by loading it from the saved location and the temporary stack can be discarded.
It should be understood that the steps shown in
In some embodiments, a data processing system may be provided to include a processor to execute instructions, and a memory coupled with the processor to store instructions that, when executed by the processor, may cause the processor to perform operations to generate an API that may allow an API-calling component to perform at least some of the operations of one or more of the processes described with respect to one or more of
Moreover, the processes described with respect to one or more of
It is to be understood that any or each module of any one or more of any system, device, or server may be provided as a software construct, firmware construct, one or more hardware components, or a combination thereof, and may be described in the general context of computer-executable instructions, such as program modules, that may be executed by one or more computers or other devices. Generally, a program module may include one or more routines, programs, objects, components, and/or data structures that may perform one or more particular tasks or that may implement one or more particular abstract data types. It is also to be understood that the number, configuration, functionality, and interconnection of the modules of any one or more of any system device, or server are merely illustrative, and that the number, configuration, functionality, and interconnection of existing modules may be modified or omitted, additional modules may be added, and the interconnection of certain modules may be altered.
While there have been described systems, methods, and computer-readable media for enabling efficient control of a media application at a media electronic device by a user electronic device, it is to be understood that many changes may be made therein without departing from the spirit and scope of the disclosure. Insubstantial changes from the claimed subject matter as viewed by a person with ordinary skill in the art, now known or later devised, are expressly contemplated as being equivalently within the scope of the claims. Therefore, obvious substitutions now or later known to one with ordinary skill in the art are defined to be within the scope of the defined elements.
Therefore, those skilled in the art will appreciate that the invention can be practiced by other than the described embodiments, which are presented for purposes of illustration rather than of limitation.
This application claims priority to U.S. Provisional Patent Application No. 63/583,959, filed Sep. 20, 2023, which is incorporated herein in its entirety.
Number | Date | Country | |
---|---|---|---|
63583959 | Sep 2023 | US |