Movatterモバイル変換


[0]ホーム

URL:


CN114006859A - Message forwarding method, terminal and computer readable storage medium - Google Patents

Message forwarding method, terminal and computer readable storage medium
Download PDF

Info

Publication number
CN114006859A
CN114006859ACN202111112486.4ACN202111112486ACN114006859ACN 114006859 ACN114006859 ACN 114006859ACN 202111112486 ACN202111112486 ACN 202111112486ACN 114006859 ACN114006859 ACN 114006859A
Authority
CN
China
Prior art keywords
message
forwarding
memory
udp
forwarding rule
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202111112486.4A
Other languages
Chinese (zh)
Other versions
CN114006859B (en
Inventor
李小军
吴闽华
孟庆晓
秦金昆
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shenzhen Genew Technologies Co Ltd
Original Assignee
Shenzhen Genew Technologies Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Shenzhen Genew Technologies Co LtdfiledCriticalShenzhen Genew Technologies Co Ltd
Priority to CN202111112486.4ApriorityCriticalpatent/CN114006859B/en
Publication of CN114006859ApublicationCriticalpatent/CN114006859A/en
Application grantedgrantedCritical
Publication of CN114006859BpublicationCriticalpatent/CN114006859B/en
Activelegal-statusCriticalCurrent
Anticipated expirationlegal-statusCritical

Links

Images

Classifications

Landscapes

Abstract

The invention discloses a message forwarding method, a terminal and a computer readable storage medium, wherein the method comprises the following steps: applying for a section of memory in the kernel as a shared memory, and sharing the shared memory by the application layer and the kernel; a forwarding application program configures a forwarding rule and sends the forwarding rule to the shared memory for storage; and the network port driver receives a message sent by network port hardware, reads a forwarding rule from the shared memory, matches the forwarding rule of the current message, and calls the network port to forward the current message. The invention directly transmits the message on the network port drive, the message is only processed on the network port drive, the application layer and the kernel drive share the memory and are used for storing the transmission rule issued by the application layer, when a message is received from the network port drive, the transmission rule is matched to perform corresponding message processing, and then the interface sent by the network port is called to directly transmit the message, thereby greatly improving the transmission performance.

Description

Message forwarding method, terminal and computer readable storage medium
Technical Field
The present invention relates to the field of communications technologies, and in particular, to a message forwarding method, a terminal, and a computer-readable storage medium.
Background
There are several ways to forward network messages under a Linux (operating system kernel) platform. As shown in fig. 1, the first method is to receive all messages through a socket (socket) in an application layer and then forward the messages, which is very simple and easy to implement, but has a very large performance problem, and the messages received from a kernel to the application layer need to be copied once in a memory; the message is sent from the application layer to the kernel and forwarded out, which also needs to be copied once. A message will go through 2 memory copies from receive processing to forwarding completion. With hundreds of thousands of message flows per second, this approach is likely to fail.
As shown in fig. 2, the second method is to perform message parsing before the message enters the kernel protocol stack and then forward the message according to the rules configured by the application layer iptables through a Linux Netfilter (Netfilter is a subsystem introduced by Linux 2.4.x, which is used as a universal and abstract framework and provides a complete set of management mechanisms of hook functions, so that connection tracking based on the protocol type, such as packet filtering, network address translation and the like, becomes possible). This scheme improves performance by a significant amount over the first, with no memory copies. However, iptables rule configuration is very complicated, and several tables of Netfilter also perform rule matching, which consumes CPU performance. Meanwhile, the message is on the network port driver, and larger instructions are consumed for processing.
As shown in fig. 3, the third scheme is a DPDK scheme, which bypasses a kernel protocol stack, directly receives a packet from a portal driver to an application, and then processes and forwards the packet. The scheme also has no memory copy and strong processing capability. But the DPDK code amount is huge, special requirements are required for the network card and the CPU, only a few network cards and CPUs can support the DPDK code amount, the DPDK code amount is not universal, and the DPDK code amount is complex to use.
Accordingly, the prior art is yet to be improved and developed.
Disclosure of Invention
The invention mainly aims to provide a message forwarding method, a terminal and a computer readable storage medium, and aims to solve the problem of low message forwarding speed in the prior art.
In order to achieve the above object, the present invention provides a packet forwarding method, which includes the following steps:
applying for a section of memory in the kernel as a shared memory, and sharing the shared memory by the application layer and the kernel;
a forwarding application program configures a forwarding rule and sends the forwarding rule to the shared memory for storage;
and the network port driver receives a message sent by network port hardware, reads a forwarding rule from the shared memory, matches the forwarding rule of the current message, and calls the network port to forward the current message.
Optionally, the message forwarding method, where the applying for a section of memory in the kernel as a shared memory and the application layer and the kernel share the shared memory, specifically includes:
starting a kernel forwarding module;
applying for continuous physical memory;
setting a memory page where the physical memory is located as a reserved page mark;
remapping the physical memory to a user space;
and the kernel rule table is a memory space pointed by the physical memory.
Optionally, in the packet forwarding method, the user space represents an address space.
Optionally, the message forwarding method, where the forwarding application configures a forwarding rule, and sends the forwarding rule to the shared memory for storage, specifically includes:
opening a user space APP;
opening a driving device of the kernel forwarding module;
acquiring a forwarding rule table address;
initializing a forwarding rule table;
and allocating a forwarding rule to each port number according to the UDP port number as an index.
Optionally, the message forwarding method, wherein the forwarding rule includes: a source MAC, a destination MAC, and a valid flag.
Optionally, the message forwarding method includes that the portal driver receives a message sent by portal hardware, reads a forwarding rule from a shared memory, matches the forwarding rule of the current message, and calls a portal to forward the current message, where the method specifically includes:
the first network port starts to receive the message;
judging whether the message is an IP message or not;
if the message is an IP message, judging whether the message is a UDP message or not;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value;
if the UDP destination port number is larger than the preset value, reading a forwarding rule corresponding to the port number;
replacing the destination NAC of the message with a destination MAC in the forwarding rule;
replacing the source MAC of the message with the source MAC of the second network port;
and calling a port function to forward the message to the second network port.
Optionally, the message forwarding method includes that the portal driver receives a message sent by portal hardware, reads a forwarding rule from a shared memory, matches the forwarding rule of the current message, and calls a portal to forward the current message, where the method specifically includes:
the second network port starts to receive the message;
judging whether the message is an IP message or not;
if the message is an IP message, judging whether the message is a UDP message or not;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value;
if the UDP destination port number is larger than the preset value, reading a forwarding rule corresponding to the port number;
replacing the destination NAC of the message with a destination MAC in the forwarding rule;
replacing the source MAC of the message with the source MAC of the first internet access;
and calling a port function to forward the message to the first internet access.
Optionally, the method for forwarding a packet, wherein the determining whether the packet is an IP packet, further includes:
if the message is not an IP message, the message is uploaded to a protocol stack;
the judging whether the message is a UDP message further includes:
if the message is not a UDP message, uploading the message to a protocol stack;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value, and then:
if the UDP destination port number is not larger than the preset value, the message is uploaded to a protocol stack.
In addition, to achieve the above object, the present invention further provides a terminal, wherein the terminal includes: the message forwarding program realizes the steps of the message forwarding method when being executed by the processor.
In addition, to achieve the above object, the present invention further provides a computer readable storage medium, wherein the computer readable storage medium stores a message forwarding program, and the message forwarding program implements the steps of the message forwarding method when executed by a processor.
The method comprises the steps that a section of memory is applied to a kernel to serve as a shared memory, and an application layer and the kernel share the shared memory; a forwarding application program configures a forwarding rule and sends the forwarding rule to the shared memory for storage; and the network port driver receives a message sent by network port hardware, reads a forwarding rule from the shared memory, matches the forwarding rule of the current message, and calls the network port to forward the current message. The invention directly transmits the message on the network port drive, the message is only processed on the network port drive, the application layer and the kernel drive share the memory and are used for storing the transmission rule issued by the application layer, when a message is received from the network port drive, the transmission rule is matched to perform corresponding message processing, and then the interface sent by the network port is called to directly transmit the message, thereby greatly improving the transmission performance.
Drawings
Fig. 1 is a schematic diagram of an application layer receiving and retransmitting a message through a socket;
fig. 2 is a schematic diagram of parsing a message before the message enters a kernel protocol stack through a Netfilter module of Linux, and then forwarding the message according to rules configured by an application layer iptables;
FIG. 3 is a schematic diagram of a message received directly from a portal driver to an application program, and then processed and forwarded;
FIG. 4 is a flow chart of a preferred embodiment of the message forwarding method of the present invention;
FIG. 5 is a schematic diagram illustrating the interaction between hardware in the preferred embodiment of the message forwarding method of the present invention;
fig. 6 is a schematic diagram illustrating the establishment of a shared memory in the preferred embodiment of the message forwarding method of the present invention;
FIG. 7 is a diagram illustrating a forwarding application configuring forwarding rules in a preferred embodiment of the message forwarding method of the present invention;
fig. 8 is a schematic flow chart of a first mode of packet forwarding in the preferred embodiment of the packet forwarding method of the present invention;
fig. 9 is a flow chart illustrating a second mode of packet forwarding in the preferred embodiment of the packet forwarding method of the present invention;
FIG. 10 is a diagram illustrating an operating environment of a terminal according to a preferred embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention clearer and clearer, the present invention is further described in detail below with reference to the accompanying drawings and examples. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
As shown in fig. 4 and 5, the message forwarding method according to the preferred embodiment of the present invention includes the following steps:
step S10, applying for a section of memory in the kernel as a shared memory, and sharing the shared memory by the application layer and the kernel;
step S20, the forwarding application program configures the forwarding rule and sends the forwarding rule to the shared memory for storage;
step S30, the network interface driver receives the message sent by the network interface hardware, and the network interface driver reads the forwarding rule from the shared memory, matches the forwarding rule of the current message, and invokes the network interface to forward the current message.
Specifically, as shown in fig. 6, the kernel forwarding module VPM is started, a continuous physical memory ptr is applied for kmalloc (4M), a memory page where the physical memory ptr is located is set as a reserved page flag, the physical memory ptr is remapped to a user space through remap _ pfn _ range, and the kernel rule table is a memory space pointed to by the physical memory prt.
The user space refers to an address space, such as a 32-bit computer, the address space is 32 powers of 2, that is, 4GB, a 64-bit computer, and the address space is 64 powers of 2. In the Linux system, the address space for running the kernel software and the address space for running the application program are separated and cannot be directly accessed with each other. In order to make the memory of the kernel space accessible to the APP user process, the memory needs to be remapped to the user APP space by mmap ().
Specifically, as shown in fig. 7, the user space APP is started, the driver fd of the kernel forwarding module VPM is opened ("/dev/VPM"), the forwarding rule table address m _ pstpvmtable is obtained as mmap (fd), the forwarding rule table m _ pstpvmtable is initialized to all 0, one forwarding rule is allocated to each port number according to the UDP port number as an index, and 1 ten thousand rules are totalized. Wherein the forwarding rule comprises: a source MAC, a destination MAC, and a valid flag.
Specifically, as shown in fig. 8, the first network port (eth0) starts receiving the packet, determines the type of the packet from eth0, determines the type of the packet to be 0x800, i.e. whether it is an IP packet, if it is not, the packet is handed over to the protocol stack, if the message is an IP message, continuously judging whether the message is a UDP message or not, if the message is not the UDP message, uploading the packet message to a protocol stack, if the message is a UDP message, judging whether the port of the UDP destination port is larger than a preset value, namely, judging whether the UDP destination port number is more than 1000, if the UDP destination port number is not more than the preset value, uploading the packet message to a protocol stack, if the destination port number of the UDP is larger than the preset value, reading a forwarding rule corresponding to the port number port, replacing the destination NAC of the message with a destination MAC in the forwarding rule, replacing the source MAC of the message with the source MAC of the second network port (eth1), and calling a port function gfar _ send to forward the message to the second network port eth 1.
Specifically, as shown in fig. 9, the second network port (eth1) starts receiving the packet, determines the type of the packet from eth0, determines the type of the packet to be 0x800, i.e. whether it is an IP packet, if it is not, the packet is handed over to the protocol stack, if the message is an IP message, continuously judging whether the message is a UDP message or not, if the message is not the UDP message, uploading the packet message to a protocol stack, if the message is a UDP message, judging whether the port of the UDP destination port is larger than a preset value, namely, judging whether the UDP destination port number is more than 1000, if the UDP destination port number is not more than the preset value, uploading the packet message to a protocol stack, if the destination port number of the UDP is larger than the preset value, reading a forwarding rule corresponding to the port number port, replacing the destination NAC of the message with a destination MAC in the forwarding rule, replacing the source MAC of the message with a source MAC of the internet access (eth0), and calling a port function gfar _ send to forward the message to the first internet access eth 0.
Through practical tests, the scheme of the invention can achieve 15 ten thousand bidirectional messages per second on the NXP P1021, and does not lose packets.
Further, as shown in fig. 10, based on the message forwarding method and system, the present invention also provides a terminal, which includes aprocessor 10, amemory 20, and adisplay 30. Fig. 10 shows only some of the components of the terminal, but it is to be understood that not all of the shown components are required to be implemented, and that more or fewer components may be implemented instead.
Thememory 20 may in some embodiments be an internal storage unit of the terminal, such as a hard disk or a memory of the terminal. Thememory 20 may also be an external storage device of the terminal in other embodiments, such as a plug-in hard disk, a Smart Media Card (SMC), a Secure Digital (SD) Card, a Flash memory Card (Flash Card), and the like provided on the terminal. Further, thememory 20 may also include both an internal storage unit and an external storage device of the terminal. Thememory 20 is used for storing application software installed in the terminal and various types of data, such as program codes of the installation terminal. Thememory 20 may also be used to temporarily store data that has been output or is to be output. In one embodiment, thememory 20 stores amessage forwarding program 40, and themessage forwarding program 40 can be executed by theprocessor 10, so as to implement the message forwarding method in the present application.
Theprocessor 10 may be a Central Processing Unit (CPU), a microprocessor or other data Processing chip in some embodiments, and is configured to run program codes stored in thememory 20 or process data, such as executing the message forwarding method.
Thedisplay 30 may be an LED display, a liquid crystal display, a touch-sensitive liquid crystal display, an OLED (Organic Light-Emitting Diode) touch panel, or the like in some embodiments. Thedisplay 30 is used for displaying information at the terminal and for displaying a visual user interface. The components 10-30 of the terminal communicate with each other via a system bus.
In one embodiment, when theprocessor 10 executes themessage forwarding program 40 in thememory 20, the following steps are implemented:
applying for a section of memory in the kernel as a shared memory, and sharing the shared memory by the application layer and the kernel;
a forwarding application program configures a forwarding rule and sends the forwarding rule to the shared memory for storage;
and the network port driver receives a message sent by network port hardware, reads a forwarding rule from the shared memory, matches the forwarding rule of the current message, and calls the network port to forward the current message.
The applying for a section of memory in the kernel as a shared memory, and the sharing of the shared memory by the application layer and the kernel specifically include:
starting a kernel forwarding module;
applying for continuous physical memory;
setting a memory page where the physical memory is located as a reserved page mark;
remapping the physical memory to a user space;
and the kernel rule table is a memory space pointed by the physical memory.
Wherein the user space represents an address space.
The configuring, by the forwarding application program, a forwarding rule, and sending the forwarding rule to the shared memory for storage specifically includes:
opening a user space APP;
opening a driving device of the kernel forwarding module;
acquiring a forwarding rule table address;
initializing a forwarding rule table;
and allocating a forwarding rule to each port number according to the UDP port number as an index.
Wherein the forwarding rule comprises: a source MAC, a destination MAC, and a valid flag.
The method includes that the network interface driver receives a message sent by network interface hardware, reads a forwarding rule from a shared memory, matches the forwarding rule of a current message, and calls a network interface to forward the current message, and specifically includes:
the first network port starts to receive the message;
judging whether the message is an IP message or not;
if the message is an IP message, judging whether the message is a UDP message or not;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value;
if the UDP destination port number is larger than the preset value, reading a forwarding rule corresponding to the port number;
replacing the destination NAC of the message with a destination MAC in the forwarding rule;
replacing the source MAC of the message with the source MAC of the second network port;
and calling a port function to forward the message to the second network port.
The method includes that the network interface driver receives a message sent by network interface hardware, reads a forwarding rule from a shared memory, matches the forwarding rule of a current message, and calls a network interface to forward the current message, and specifically includes:
the second network port starts to receive the message;
judging whether the message is an IP message or not;
if the message is an IP message, judging whether the message is a UDP message or not;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value;
if the UDP destination port number is larger than the preset value, reading a forwarding rule corresponding to the port number;
replacing the destination NAC of the message with a destination MAC in the forwarding rule;
replacing the source MAC of the message with the source MAC of the first internet access;
and calling a port function to forward the message to the first internet access.
Wherein, the judging whether the message is an IP message further comprises:
if the message is not an IP message, the message is uploaded to a protocol stack;
the judging whether the message is a UDP message further includes:
if the message is not a UDP message, uploading the message to a protocol stack;
if the message is a UDP message, judging whether the UDP destination port number is larger than a preset value, and then:
if the UDP destination port number is not larger than the preset value, the message is uploaded to a protocol stack.
The present invention also provides a computer-readable storage medium, wherein the computer-readable storage medium stores a message forwarding program, and the message forwarding program implements the steps of the message forwarding method when executed by a processor.
In summary, the present invention provides a message forwarding method, a terminal and a computer-readable storage medium, where the method includes: applying for a section of memory in the kernel as a shared memory, and sharing the shared memory by the application layer and the kernel; a forwarding application program configures a forwarding rule and sends the forwarding rule to the shared memory for storage; and the network port driver receives a message sent by network port hardware, reads a forwarding rule from the shared memory, matches the forwarding rule of the current message, and calls the network port to forward the current message. The invention directly transmits the message on the network port drive, the message is only processed on the network port drive, the application layer and the kernel drive share the memory and are used for storing the transmission rule issued by the application layer, when a message is received from the network port drive, the transmission rule is matched to perform corresponding message processing, and then the interface sent by the network port is called to directly transmit the message, thereby greatly improving the transmission performance.
It should be noted that, in this document, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or terminal that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or terminal. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other like elements in a process, method, article, or terminal that comprises the element.
Of course, it will be understood by those skilled in the art that all or part of the processes of the methods of the embodiments described above can be implemented by instructing relevant hardware (such as a processor, a controller, etc.) through a computer program, and the program can be stored in a computer readable storage medium, and when executed, the program can include the processes of the embodiments of the methods described above. The computer readable storage medium may be a memory, a magnetic disk, an optical disk, etc.
It is to be understood that the invention is not limited to the examples described above, but that modifications and variations may be effected thereto by those of ordinary skill in the art in light of the foregoing description, and that all such modifications and variations are intended to be within the scope of the invention as defined by the appended claims.

Claims (10)

CN202111112486.4A2021-09-182021-09-18Message forwarding method, terminal and computer readable storage mediumActiveCN114006859B (en)

Priority Applications (1)

Application NumberPriority DateFiling DateTitle
CN202111112486.4ACN114006859B (en)2021-09-182021-09-18Message forwarding method, terminal and computer readable storage medium

Applications Claiming Priority (1)

Application NumberPriority DateFiling DateTitle
CN202111112486.4ACN114006859B (en)2021-09-182021-09-18Message forwarding method, terminal and computer readable storage medium

Publications (2)

Publication NumberPublication Date
CN114006859Atrue CN114006859A (en)2022-02-01
CN114006859B CN114006859B (en)2023-05-30

Family

ID=79921871

Family Applications (1)

Application NumberTitlePriority DateFiling Date
CN202111112486.4AActiveCN114006859B (en)2021-09-182021-09-18Message forwarding method, terminal and computer readable storage medium

Country Status (1)

CountryLink
CN (1)CN114006859B (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
CN114816797A (en)*2022-04-262022-07-29上海商米科技集团股份有限公司 An image data processing method, system, electronic device and storage medium
CN120075318A (en)*2025-03-042025-05-30广东博纬通信科技有限公司Data transmission method and system based on fast network protocol stack

Citations (8)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
CN102752321A (en)*2012-08-072012-10-24广州微仕科信息技术有限公司Firewall realization method based on multicore network processor
CN103634206A (en)*2012-08-212014-03-12曙光信息产业(北京)有限公司Model for data packet forwarding
CN104753928A (en)*2015-03-162015-07-01苏州科达科技股份有限公司Code stream forwarding method and system
CN105227493A (en)*2015-10-152016-01-06上海斐讯数据通信技术有限公司The method of data message forwarding performance is improved under multi-core platform
CN105975407A (en)*2016-03-222016-09-28华为技术有限公司Mapping method of memory address, and equipment
CN106685829A (en)*2016-12-272017-05-17京信通信技术(广州)有限公司Method and apparatus of forwarding real time transport protocol RTP user plane data
CN106998347A (en)*2016-01-262017-08-01中兴通讯股份有限公司The apparatus and method of server virtualization network share
US20190222521A1 (en)*2016-09-302019-07-18Nokia Solutions And Networks OyControlling service function chaining

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
CN102752321A (en)*2012-08-072012-10-24广州微仕科信息技术有限公司Firewall realization method based on multicore network processor
CN103634206A (en)*2012-08-212014-03-12曙光信息产业(北京)有限公司Model for data packet forwarding
CN104753928A (en)*2015-03-162015-07-01苏州科达科技股份有限公司Code stream forwarding method and system
CN105227493A (en)*2015-10-152016-01-06上海斐讯数据通信技术有限公司The method of data message forwarding performance is improved under multi-core platform
CN106998347A (en)*2016-01-262017-08-01中兴通讯股份有限公司The apparatus and method of server virtualization network share
CN105975407A (en)*2016-03-222016-09-28华为技术有限公司Mapping method of memory address, and equipment
US20190222521A1 (en)*2016-09-302019-07-18Nokia Solutions And Networks OyControlling service function chaining
CN106685829A (en)*2016-12-272017-05-17京信通信技术(广州)有限公司Method and apparatus of forwarding real time transport protocol RTP user plane data

Cited By (2)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
CN114816797A (en)*2022-04-262022-07-29上海商米科技集团股份有限公司 An image data processing method, system, electronic device and storage medium
CN120075318A (en)*2025-03-042025-05-30广东博纬通信科技有限公司Data transmission method and system based on fast network protocol stack

Also Published As

Publication numberPublication date
CN114006859B (en)2023-05-30

Similar Documents

PublicationPublication DateTitle
CN110071900B (en)Data sending method and device
US9584628B2 (en)Zero-copy data transmission system
US9940123B1 (en)Updating device code through a bus
US5884313A (en)System and method for efficient remote disk I/O
CN111427662B (en)IP address allocation method of virtual machine, terminal equipment and DHCP server
US8413172B2 (en)Method and system for socket API call emulation
US8495262B2 (en)Using a table to determine if user buffer is marked copy-on-write
US7844810B2 (en)Computer system and booting method therefor and server used for streaming on-demand a remaining part of a boot-up main memory image that includes an operating system
US8706942B2 (en)Direct memory access (DMA) address translation between peer-to-peer input/output (I/O) devices
US20200371954A1 (en)Address translation method, apparatus, and system
US8510760B2 (en)Systems and methods for secure host resource management
US8868883B1 (en)Virtual memory management for real-time embedded devices
CN114006859A (en)Message forwarding method, terminal and computer readable storage medium
US7945697B2 (en)System and method for offering a fixed internet protocol address to a client device
US8024727B2 (en)Enhancing or replacing host operating system functionality by leveraging guest operating system functionality
CN111666579B (en)Computer device, access control method thereof and computer readable medium
CN111371759B (en)Network data packet reading method, device, equipment and readable storage medium
US20160292009A1 (en)Execution offloading through syscall trap interface
US20070294707A1 (en)Enhancing or replacing host operating system functionality by leveraging guest operating system functionality
CN112492064A (en)Multi-network-port MAC address allocation method and terminal for embedded equipment
CN114205848B (en)Virtual WIFI surfing method and device, computer equipment and storage medium
CN113839889A (en)Message processing method, terminal and computer readable storage medium
CN110677378B (en)Control method of MAC address, intelligent terminal and storage medium
US8412859B2 (en)Methods and systems for interconnecting a peripheral device and an electronic system
CN115858422A (en)Page table processing method, electronic device and storage medium

Legal Events

DateCodeTitleDescription
PB01Publication
PB01Publication
SE01Entry into force of request for substantive examination
SE01Entry into force of request for substantive examination
GR01Patent grant
GR01Patent grant

[8]ページ先頭

©2009-2025 Movatter.jp