US20160048585A1 - Bloom filter with memory element - Google Patents

Bloom filter with memory element Download PDF

Info

Publication number
US20160048585A1
US20160048585A1 US14/924,186 US201514924186A US2016048585A1 US 20160048585 A1 US20160048585 A1 US 20160048585A1 US 201514924186 A US201514924186 A US 201514924186A US 2016048585 A1 US2016048585 A1 US 2016048585A1
Authority
US
United States
Prior art keywords
elements
bloom filter
indexes
memory
block
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.)
Abandoned
Application number
US14/924,186
Inventor
Steven Glen Jorgensen
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.)
Hewlett Packard Development Co LP
Hewlett Packard Enterprise Development LP
Original Assignee
Hewlett Packard Development Co LP
Hewlett Packard Enterprise Development LP
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 Hewlett Packard Development Co LP, Hewlett Packard Enterprise Development LP filed Critical Hewlett Packard Development Co LP
Priority to US14/924,186 priority Critical patent/US20160048585A1/en
Publication of US20160048585A1 publication Critical patent/US20160048585A1/en
Assigned to HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P. reassignment HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: JORGENSEN, STEVEN GLEN
Assigned to HEWLETT PACKARD ENTERPRISE DEVELOPMENT LP reassignment HEWLETT PACKARD ENTERPRISE DEVELOPMENT LP ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P.
Abandoned legal-status Critical Current

Links

Images

Classifications

    • G06F17/30699
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/30Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
    • G06F16/33Querying
    • G06F16/335Filtering based on additional data, e.g. user or group profiles
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/30Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
    • G06F16/31Indexing; Data structures therefor; Storage structures
    • G06F16/313Selection or weighting of terms for indexing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/953Querying, e.g. by the use of web search engines
    • G06F16/9535Search customisation based on user profiles and personalisation
    • G06F17/30616
    • G06F17/30867
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/50Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
    • G06F21/55Detecting local intrusion or implementing counter-measures
    • G06F21/56Computer malware detection or handling, e.g. anti-virus arrangements
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/14Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic
    • H04L63/1408Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic by monitoring network traffic
    • H04L63/1416Event detection, e.g. attack signature detection
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/14Network architectures or network communication protocols for network security for detecting or protecting against malicious traffic
    • H04L63/1441Countermeasures against malicious traffic
    • H04L63/145Countermeasures against malicious traffic the attack involving the propagation of malware through the network, e.g. viruses, trojans or worms

Definitions

  • a network security appliance may examine all packets traversing a network in order to detect malicious packets. For example, a packet may contain a portion of a virus that is identifiable by a certain sequence of characters in the packet. By examining every packet for the sequence of characters, it may be determined if the packet may contain at least part of the virus. Once it is determined that a particular character string is present, further action may be taken. For example, in the case of a network security appliance, the packet may be forwarded to additional logic to determine if the packet actually contains the virus, or if the character sequence just happened to be included in the packet for non-malicious reasons.
  • FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter.
  • FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements.
  • FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements.
  • a network security device may be used to examine every packet flowing through the network to identify malicious packets and packet streams by examining each packet for the presence of certain character strings.
  • the presence of a “signature” character string may indicate that the packet is part of a flow that includes a computer virus.
  • the network security device must compare the contents of every packet to a list of possible signatures to determine if the signature is contained in the packet.
  • a similar situation may occur anytime a large amount of data needs to be scanned to detect the presence of specified character strings.
  • a bloom filter is a data structure that can be used to quickly determine if an element is included in a set.
  • a network security device may have a plurality of known virus signatures. This plurality of signatures can be considered a set of elements.
  • Bloom filters may be used to compare an arbitrary input to the set of elements. If the Bloom filters return a false result, it can be guaranteed that the input is not included in the set of elements. However, if the bloom filters return a positive result, this only indicates that the input has the possibility of being included in the set of elements. In other words, the bloom filters may produce false positive results.
  • FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter.
  • the system 100 may include a device 110 .
  • the device 110 may be included in a network security appliance.
  • the techniques described herein are applicable anywhere that bloom filters may be used to determine inclusion in a set.
  • the device may typically be implemented in hardware, such as in an Application Specific Integrated Circuit (ASIC). Although shown as a standalone device, it should be understood that the capabilities described herein may be included within hardware that also provides other functionality.
  • ASIC Application Specific Integrated Circuit
  • the device 110 may include processing logic 112 .
  • the processing logic may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic.
  • the processing logic may include receive logic 114 , bloom filter index logic 116 , insert logic 118 , and compare logic 120 .
  • receive logic 114 may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic.
  • the processing logic may include receive logic 114 , bloom filter index logic 116 , insert logic 118 , and compare logic 120 .
  • the various logic blocks may be used to implement the techniques described herein. The operation of these logic blocks is described in further detail below.
  • the device 100 may also include memory 122 storing various data structures.
  • the data structures can include bloom filters 124 and a set element structure 126 .
  • the bloom filters may be used to determine if an element is potentially included in a set, while the set element structure may be used to eliminate false positives that result from the bloom filters.
  • the data structures 124 and 126 are also depicted in expanded form as elements 124 - a and 126 - a respectively.
  • the following operational example is provided. Assume at the beginning of the example that the set of elements, and as such the bloom filters, are empty. Also assume that the set elements structure is empty. In other words, in the beginning, the device is not searching for any elements.
  • the element is first received by the receive logic 114 .
  • the element to be inserted may be referred to as the insertion element.
  • the insertion element may be processed by a number of hash functions 116 - a . In the present example, there are four hash functions shown, however it should be understood that this is for purposes of explanation and not limitation. These hash functions may be implemented in the bloom filter index logic 116 .
  • input 130 which consists of the characters ABC is sent to the hash functions 116 - a .
  • the result of this operation is that each hash function produces a value for the input.
  • Each of these values may be referred to as a bloom filter index.
  • input 130 (ABC) has produced bloom filter indexes 2, 10, 6, and 15. It should be understood that this is an ordered set of indexes. For purposes of this description, groupings of four values within parenthesis indicate the results of the bloom filter index logic.
  • the insert logic 118 may be used to insert the element.
  • the bloom filter indexes are examined. For each hash function, the entry identified by the index is set to true by the insert logic in the bloom filter associated with the particular hash. For example, the input ABC produced bloom filter indexes 2, 10, 6, and 15 for hash functions 0, 1, 2, and 3 respectively. Thus, looking at bloom filters 124 - a , it can be seen that indexes 2, 10, 6, and 15 have been set to true for their respective bloom filters.
  • the set elements structure is also set to reflect the insertion of the element ABC.
  • the set element structure is implemented as a data structure in memory, with at least a portion of the memory being a content addressable memory (CAM).
  • the ordered bloom filter indexes may be inserted into the content addressable portion of the memory.
  • the particular element that is being inserted may also be added to the set elements structure and is associated with the ordered indexes that was inserted into the CAM portion of the memory.
  • a rule may be associated with the set element.
  • the rule may specify what action is to be taken upon a match of the particular set element. For example, the rule may indicate that further processing on a matching element is needed.
  • the particular actions of a rule are relatively unimportant and are dependent on the application utilizing the techniques described herein.
  • element ABC has been added to the set element structure as entry 150 .
  • it is first determined if the indices hit on an existing CAM entry. If not, an empty entry is found. A non-empty entry is described in further detail below.
  • the particular indexes (2, 10, 6, 15) are then placed in the bloom filter indices CAM.
  • the actual element is also stored and is associated with the CAM entry.
  • the rule for the set element ABC is associated with the set element. This same process may occur for any elements that are to be added to the bloom filter. For example, element XYZ (7, 4, 9, 2) 151 causes the corresponding indices in the bloom filters 124 - a to be set to true.
  • the set element structure is modified such that the indices are placed in the CAM, the element is associated with the CAM entry and the rule associated with the element is also associated with the element.
  • determining that PQR is not in the set of elements is as simple as examining the first bloom filter. Because index 6 in the bloom filter associated with hash 0 is not set to true in the bloom filters, there is no possibility of the element being included in the set (otherwise the index would have been set to true).
  • the second example presents a more interesting case. Assume that it is desired to determine if element QWE is included in the set elements. Assume element QWE has bloom filter indices (2, 0, 9, 15). Here, each of the indexes in the bloom filters corresponding to the element QWE has been set, however, not by the element QWE. For example, in the bloom filter associated with hash 0, index 2 was set by element ABC. The bloom filter associated with hash 1 had index 0 set by both elements LMO and QRS. The bloom filter associated with hash 2 had index 9 set by element XYZ. The bloom filter associated with Hash 3 had index 15 set by element ABC. Thus, even though element QWE is not included in the set of elements, the bloom filters only mechanism would have indicated that element QWE was in the set of elements. In other words, element QWE would have resulted in a false positive.
  • the techniques described herein overcome this problem of false positives through the set element structure.
  • the set element structure may be examined by compare logic 120 to determine if the element was actually inserted or if it is a false positive.
  • the ordered index for element QWE is (2, 0, 9, 15). Because that particular ordering of indexes has not been entered into the CAM, there will be no CAM hit when the set element structure is accessed. As such, this means that the particular combination of indexes produced by element QWE was never inserted into the set of elements, and is not included in the set of elements. Thus, the false positive produced by the bloom filter has been overcome.
  • the techniques described herein also prevent false positives in the case where two elements just so happen to have bloom filter indexes that are the same, but only one of the elements was inserted into the set of elements.
  • element PDQ has bloom filter indexes (2, 10, 6, 15) which just so happens to be exactly the same as element ABC.
  • Element ABC is included in the set.
  • the bloom filter analysis will indicate element PDQ as potentially being included in the set of elements.
  • the CAM search will result in a hit on ordered indexes (2, 10, 6, 15) because that set of ordered indexes was inserted by element ABC.
  • An additional comparison is done by the compare logic between the element and the elements associated with the CAM entry. In this example, CAM entry 150 is only associated with element ABC, and as such element PDQ is not included in the set of elements. The false positive is once again eliminated.
  • element QRS has indexes (13, 0, 12, 8).
  • the bloom filters would indicate this element as possibly being within the set of elements.
  • a CAM search would result in a hit 153 on those indexes.
  • the element QRS may then be compared to all elements associated with this CAM entry.
  • both elements QRS and LMO are associated with CAM entry 153 .
  • an alternate example implementation may directly store the element in the CAM.
  • the CAM structure may be searched using the element itself. In such an implementation, the step of locating the CAM entry and then comparing the element associated with the CAM entry to the search element can be avoided.
  • the CAM portion of the memory may be eliminated completely.
  • the ordered indexes may be hashed to obtain a location in memory.
  • the elements (and the corresponding rules) associated with the hash of the ordered indexes may be stored starting at the location in memory.
  • the ordered bloom filter indexes may be hashed to determine the location in memory. All elements associated with the location in memory may then be compared to the search element to determine if the search element is included in the set of elements.
  • the bloom filters may take care of the majority of cases independently. If an element is definitively not in the set, this can be determined by the bloom filters alone. It is only in the cases where the element has a possibility of being in the set of elements that the second stage of processing occurs. Thus, it is likely that the majority of cases do not even reach the second stage of processing, thus reducing the amount of processing needed for the majority of cases.
  • the set elements structure is efficiently organized, the elimination of false positives, when needed, is also efficient.
  • FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • a set element to be included in a set of elements may be received.
  • this element may be an element that is to be inserted into a bloom filter in accordance with the techniques described herein.
  • the bloom filters may be queried to determine if this element has been added to the set.
  • a plurality of bloom filter indexes may be computed based on the set element. In other words the index values for each of the bloom filters may be determined. In some implementations, the computation may be done through a hashing function. Regardless of implementation, a plurality of bloom filter indexes may be determined.
  • the set element may be inserted into the bloom filter using the plurality of bloom filter indexes.
  • the computed bloom filter indexes are used to determine which entries in the bloom filters will have their bits set to a true value and which ones will remain null.
  • the set element may be stored in a memory, wherein the element is accessed in the memory to eliminate false positives. As explained above, when the bloom filters determine that an element may possibly be included in the set of elements, accessing the memory may be used to eliminate a false positive.
  • FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • an element to be included in a set of elements may be received. This set element is to be inserted into the bloom filters.
  • a plurality of bloom filter indexes may be computed, based on the element.
  • the element may be inserted into the bloom filters using the plurality of bloom filter indexes.
  • block 340 it may be determined if the implementation is using a CAM. If so, the process moves to block 345 .
  • block 345 an empty entry in the memory may be located, wherein at least a portion of the memory is a CAM.
  • block 350 it may be determined if the implementation is storing indexes or the element itself in the CAM. If the bloom filter indexes are being stored in the CAM, the process moves to block 355 .
  • block 355 the ordered set of bloom filter indexes is stored in the CAM of the located entry.
  • the element is stored, associated with the located entry. If it is determined in block 350 that indexes are not being stored, the process moves to block 365 .
  • block 365 the element is stored in the CAM of the located entry.
  • block 340 If it is determined in block 340 that the implementation is not using a CAM, the process moves to block 370 .
  • a hash of the ordered set of indexes is computed.
  • block 375 memory associated with the hash is identified.
  • block 380 the element is added to the identified memory.
  • FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements.
  • a search element may be received.
  • the search element is the element that may be checked against the bloom filters to determine if the search element may exist in the set of elements.
  • bloom filter indexes may be computed for the search element. As explained above, in one implementation, the bloom filter indexes may be computed using a series of hash functions. However, it should be understood that any other method of computing bloom filter indexes would also be suitable.
  • the computed bloom filter indexes may be compared to a plurality bloom filters to determine if the search element is not included in the set of elements. As explained above, if any of the bloom filters indexed by the computed indexes do not contain a true value, then the search element can definitively be determined to not be included in the set of elements. However, if all of the bloom filter indexes do contain a true value, it can be determined that the search element has the possibility of being included in the set of elements.
  • the search element when the search element is not indicated as not being included in the set of elements, the search element may be compared to a memory to determine if the search element is included in the set of elements. In other words, if the bloom filters indicate a possibility of the element being included in the set of elements, the memory may be accessed to determine if the element is actually included in the set of elements or if it is a false positive.
  • FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements.
  • a search element may be received.
  • bloom filter indexes for the search element may be computed.
  • the computed bloom filter indexes may be compared to bloom filters to determine if the search element is possible included in the set of elements.
  • block 535 it may be determined if there was a match in block 530 . If there was no match, the search element is not included in the set of elements. As such, the process moves to block 540 , in which it is determined that the search element is not in the set of elements because the computed bloom filter indexes are not in the bloom filter. If the determination in block 535 is that the computed bloom filter indexes are included in the bloom filter, the process moves to block 545 .
  • block 545 it is determined if this implementation utilizes a CAM. If so, the process moves to block 550 . In block 550 it is determined if the indexes are stored in the CAM. If so, the process moves to block 555 . In block 555 , it may be determined, using a CAM associative on the ordered set of indexes, that an entry exists for the ordered set of indexes. In block 560 , it may be determined that the search element is associated with the entry. If the search element is associated with the entry, this means that the search element is included in the set of elements.
  • block 550 If it is determined in block 550 that the indexes are not stored, the process moves to block 565 .
  • block 565 it may be determined, using a CAM associative on the search element that an entry exists for the search element. If an entry exists, then this means that the search element is included in the set of elements.
  • block 570 a hash of the ordered set of indexes may be computed.
  • an entry from the memory may be retrieved based on the hash.
  • block 580 it may be determined if the search element is associated with the retrieved entry. If so, this indicates that the search element is included in the set of elements.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Computer Hardware Design (AREA)
  • General Physics & Mathematics (AREA)
  • Physics & Mathematics (AREA)
  • Software Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Health & Medical Sciences (AREA)
  • General Health & Medical Sciences (AREA)
  • Virology (AREA)
  • Signal Processing (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Computing Systems (AREA)
  • Computational Linguistics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

Techniques are provided for determining if an element is contained in a set of elements. In one aspect, an element may be received and inserted into a bloom filter. The element may also be inserted into a memory associative on the bloom filter indexes. In another aspect, a search element may be received and compared to a bloom filter. If the search element is included in the bloom filter, a memory may be used to determine if the search element is included in the set of elements.

Description

    BACKGROUND
  • There are many situations in which determining if a specified sequence of characters is included in a larger pool of characters is needed. For example, a network security appliance may examine all packets traversing a network in order to detect malicious packets. For example, a packet may contain a portion of a virus that is identifiable by a certain sequence of characters in the packet. By examining every packet for the sequence of characters, it may be determined if the packet may contain at least part of the virus. Once it is determined that a particular character string is present, further action may be taken. For example, in the case of a network security appliance, the packet may be forwarded to additional logic to determine if the packet actually contains the virus, or if the character sequence just happened to be included in the packet for non-malicious reasons.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter.
  • FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for.
  • FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements.
  • FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements.
  • DETAILED DESCRIPTION
  • A need often arises to search large set of characters for the presence of certain sequences of characters, referred to as character strings. For example, a network security device may be used to examine every packet flowing through the network to identify malicious packets and packet streams by examining each packet for the presence of certain character strings. The presence of a “signature” character string may indicate that the packet is part of a flow that includes a computer virus. In order to achieve this result, the network security device must compare the contents of every packet to a list of possible signatures to determine if the signature is contained in the packet. A similar situation may occur anytime a large amount of data needs to be scanned to detect the presence of specified character strings.
  • Such a comparison can be very resource intensive. Further exacerbating the problem is the fact that the vast majority of packets will not match a signature. Thus, any processing used to analyze packets which do not match a signature is essentially wasted. It would be beneficial to have a mechanism that can quickly determine if a packet contains a signature of interest. One mechanism that has been used is a bloom filter.
  • A bloom filter is a data structure that can be used to quickly determine if an element is included in a set. For example, a network security device may have a plurality of known virus signatures. This plurality of signatures can be considered a set of elements. Bloom filters may be used to compare an arbitrary input to the set of elements. If the Bloom filters return a false result, it can be guaranteed that the input is not included in the set of elements. However, if the bloom filters return a positive result, this only indicates that the input has the possibility of being included in the set of elements. In other words, the bloom filters may produce false positive results.
  • Techniques provided herein overcome the problem of false positives in bloom filters. An element is received and processed through a plurality of bloom filters. If the bloom filters indicate a negative result, it can be guaranteed that the element is not included in the set of elements. However, if the bloom filters return a positive result, a second step of processing occurs. In the second step, the particular element used in the initial application of the bloom filters are examined to determine if the particular element of interest was actually inserted into the set of elements. The process is described in further detail below and in conjunction with the appended figures.
  • FIG. 1 is an example of a system utilizing a memory to eliminate false positives when using a bloom filter. The system 100 may include a device 110. For example, the device 110 may be included in a network security appliance. However, the techniques described herein are applicable anywhere that bloom filters may be used to determine inclusion in a set. The device may typically be implemented in hardware, such as in an Application Specific Integrated Circuit (ASIC). Although shown as a standalone device, it should be understood that the capabilities described herein may be included within hardware that also provides other functionality.
  • The device 110 may include processing logic 112. The processing logic may be implemented using discrete logic gates, processors, field programmable gate arrays, or any other type of logic. The processing logic may include receive logic 114, bloom filter index logic 116, insert logic 118, and compare logic 120. The various logic blocks may be used to implement the techniques described herein. The operation of these logic blocks is described in further detail below.
  • The device 100 may also include memory 122 storing various data structures. The data structures can include bloom filters 124 and a set element structure 126. The bloom filters may be used to determine if an element is potentially included in a set, while the set element structure may be used to eliminate false positives that result from the bloom filters. The data structures 124 and 126 are also depicted in expanded form as elements 124-a and 126-a respectively.
  • In order to aid in the description of the techniques presented herein, the following operational example is provided. Assume at the beginning of the example that the set of elements, and as such the bloom filters, are empty. Also assume that the set elements structure is empty. In other words, in the beginning, the device is not searching for any elements. In order to add an element to the bloom filters, the element is first received by the receive logic 114. The element to be inserted may be referred to as the insertion element. The insertion element may be processed by a number of hash functions 116-a. In the present example, there are four hash functions shown, however it should be understood that this is for purposes of explanation and not limitation. These hash functions may be implemented in the bloom filter index logic 116. As shown, input 130, which consists of the characters ABC is sent to the hash functions 116-a. The result of this operation is that each hash function produces a value for the input. Each of these values may be referred to as a bloom filter index. As shown, input 130 (ABC) has produced bloom filter indexes 2, 10, 6, and 15. It should be understood that this is an ordered set of indexes. For purposes of this description, groupings of four values within parenthesis indicate the results of the bloom filter index logic.
  • The insert logic 118 may be used to insert the element. In order to insert the element into the bloom filters, the bloom filter indexes are examined. For each hash function, the entry identified by the index is set to true by the insert logic in the bloom filter associated with the particular hash. For example, the input ABC produced bloom filter indexes 2, 10, 6, and 15 for hash functions 0, 1, 2, and 3 respectively. Thus, looking at bloom filters 124-a, it can be seen that indexes 2, 10, 6, and 15 have been set to true for their respective bloom filters.
  • In addition to setting the index values in the bloom filters, the set elements structure is also set to reflect the insertion of the element ABC. In one example implementation, the set element structure is implemented as a data structure in memory, with at least a portion of the memory being a content addressable memory (CAM). The ordered bloom filter indexes may be inserted into the content addressable portion of the memory. The particular element that is being inserted may also be added to the set elements structure and is associated with the ordered indexes that was inserted into the CAM portion of the memory. Finally, a rule may be associated with the set element. The rule may specify what action is to be taken upon a match of the particular set element. For example, the rule may indicate that further processing on a matching element is needed. The particular actions of a rule are relatively unimportant and are dependent on the application utilizing the techniques described herein.
  • In the present example, it can be seen that element ABC has been added to the set element structure as entry 150. In order to insert the element, it is first determined if the indices hit on an existing CAM entry. If not, an empty entry is found. A non-empty entry is described in further detail below. The particular indexes (2, 10, 6, 15) are then placed in the bloom filter indices CAM. The actual element is also stored and is associated with the CAM entry. Finally, the rule for the set element ABC is associated with the set element. This same process may occur for any elements that are to be added to the bloom filter. For example, element XYZ (7, 4, 9, 2) 151 causes the corresponding indices in the bloom filters 124-a to be set to true. In addition, the set element structure is modified such that the indices are placed in the CAM, the element is associated with the CAM entry and the rule associated with the element is also associated with the element.
  • The same process can occur for elements DEF (4, 14, 1, 4) 152 and LMO (13, 0, 12, 8) 153. The next element, QRS, when processed by the hash functions results in indexes 13, 0, 12, and 8. It should be noted that these index values happen to be the same as the indexes produced for element LMO. When adding the element QRS to the set element structure, there is no need to find an empty CAM entry, as an entry already exists. The new element, QRS 154 may simply be associated with the previously added entry that is associated with element LMO's 153 CAM entry. In such cases, both elements are associated with the same CAM entry.
  • Now that the bloom filter and set element structure have been populated, the use of the system to quickly check for the presence of an element in the set of elements while eliminating the possibility of false positives may now be explained. For purposes of this explanation, several examples are presented to describe various use cases. In the first example, assume that it is desired to know if element PQR is included in the set of elements inserted into the bloom filter. In other words, is string PQR included in the set of strings that are being searched for. Assume that the bloom filter indexes generated by the bloom filter index logic 116 for the string PQR are (6, 9, 12, 15). The compare logic 120 may be used to determine if the element PQR has been inserted into the bloom filters. As should be clear, determining that PQR is not in the set of elements is as simple as examining the first bloom filter. Because index 6 in the bloom filter associated with hash 0 is not set to true in the bloom filters, there is no possibility of the element being included in the set (otherwise the index would have been set to true).
  • The second example presents a more interesting case. Assume that it is desired to determine if element QWE is included in the set elements. Assume element QWE has bloom filter indices (2, 0, 9, 15). Here, each of the indexes in the bloom filters corresponding to the element QWE has been set, however, not by the element QWE. For example, in the bloom filter associated with hash 0, index 2 was set by element ABC. The bloom filter associated with hash 1 had index 0 set by both elements LMO and QRS. The bloom filter associated with hash 2 had index 9 set by element XYZ. The bloom filter associated with Hash 3 had index 15 set by element ABC. Thus, even though element QWE is not included in the set of elements, the bloom filters only mechanism would have indicated that element QWE was in the set of elements. In other words, element QWE would have resulted in a false positive.
  • The techniques described herein overcome this problem of false positives through the set element structure. Once an element has passed through the bloom filters and has been determined as possibly being included in the set of elements, the set element structure may be examined by compare logic 120 to determine if the element was actually inserted or if it is a false positive. Here, the ordered index for element QWE is (2, 0, 9, 15). Because that particular ordering of indexes has not been entered into the CAM, there will be no CAM hit when the set element structure is accessed. As such, this means that the particular combination of indexes produced by element QWE was never inserted into the set of elements, and is not included in the set of elements. Thus, the false positive produced by the bloom filter has been overcome.
  • In addition to overcoming false positives as has been described above, the techniques described herein also prevent false positives in the case where two elements just so happen to have bloom filter indexes that are the same, but only one of the elements was inserted into the set of elements. For example, assume that element PDQ has bloom filter indexes (2, 10, 6, 15) which just so happens to be exactly the same as element ABC. Element ABC is included in the set. The bloom filter analysis will indicate element PDQ as potentially being included in the set of elements. The CAM search will result in a hit on ordered indexes (2, 10, 6, 15) because that set of ordered indexes was inserted by element ABC. An additional comparison is done by the compare logic between the element and the elements associated with the CAM entry. In this example, CAM entry 150 is only associated with element ABC, and as such element PDQ is not included in the set of elements. The false positive is once again eliminated.
  • The techniques described herein are also useful when two elements have the same ordered bloom filter indexes and are both included in the set of elements. For example, element QRS has indexes (13, 0, 12, 8). The bloom filters would indicate this element as possibly being within the set of elements. A CAM search would result in a hit 153 on those indexes. The element QRS may then be compared to all elements associated with this CAM entry. Here, both elements QRS and LMO are associated with CAM entry 153. Thus, because the element QRS matches, it can be determined that the element is within the set of elements.
  • Although the above description was based on using a CAM that stores the bloom filter indexes of an element, an alternate example implementation may directly store the element in the CAM. Thus, once the bloom filters have determined that an element may potentially be included in the set of elements, the CAM structure may be searched using the element itself. In such an implementation, the step of locating the CAM entry and then comparing the element associated with the CAM entry to the search element can be avoided.
  • In yet another example implementation (not shown), the CAM portion of the memory may be eliminated completely. The ordered indexes may be hashed to obtain a location in memory. The elements (and the corresponding rules) associated with the hash of the ordered indexes may be stored starting at the location in memory. Once the bloom filters have determined that an element may be included in the set of elements, the ordered bloom filter indexes may be hashed to determine the location in memory. All elements associated with the location in memory may then be compared to the search element to determine if the search element is included in the set of elements.
  • This two stage approach eliminates the possibility of false positives without requiring excessive amounts of processing. The bloom filters may take care of the majority of cases independently. If an element is definitively not in the set, this can be determined by the bloom filters alone. It is only in the cases where the element has a possibility of being in the set of elements that the second stage of processing occurs. Thus, it is likely that the majority of cases do not even reach the second stage of processing, thus reducing the amount of processing needed for the majority of cases. In addition, because the set elements structure is efficiently organized, the elimination of false positives, when needed, is also efficient.
  • The above description was simplified to relatively small bloom filters with a small number of hash functions for purposes of ease of description only. The techniques described herein are applicable regardless of the size of the bloom filters or of the number of hash functions. In fact, an actual implementation may include indexes in the range of tens of thousands with significantly larger number of hash functions. The techniques described herein are not limited by the selected size of the bloom filter or number of hash functions.
  • Furthermore, the above description was presented in terms of elements that were a fixed number of characters, and the number of characters was the same for all elements. This was for purposes of explanation only. The techniques described herein are applicable regardless of the length of the element that is being searched for or if the elements have different lengths. What should be understood is that the results of the initial hash are compared to the bloom filter to determine if the element is included in the set of elements. The creation of the hash results are not dependent on the length of the input.
  • In addition, the techniques above are applicable in any situation wherein a bloom filter may be employed. Although the example of a network security device was mentioned, it should be understood that the techniques are applicable to any use of bloom filters.
  • FIG. 2 is an example of a high level flow diagram for inserting an element into the set of elements that are being searched for. In block 210 a set element to be included in a set of elements may be received. For example, this element may be an element that is to be inserted into a bloom filter in accordance with the techniques described herein. At a later point in time, the bloom filters may be queried to determine if this element has been added to the set. In block 220 a plurality of bloom filter indexes may be computed based on the set element. In other words the index values for each of the bloom filters may be determined. In some implementations, the computation may be done through a hashing function. Regardless of implementation, a plurality of bloom filter indexes may be determined.
  • In block 230, the set element may be inserted into the bloom filter using the plurality of bloom filter indexes. In other words, the computed bloom filter indexes are used to determine which entries in the bloom filters will have their bits set to a true value and which ones will remain null. In block 240, the set element may be stored in a memory, wherein the element is accessed in the memory to eliminate false positives. As explained above, when the bloom filters determine that an element may possibly be included in the set of elements, accessing the memory may be used to eliminate a false positive.
  • FIG. 3 is another example of a high level flow diagram for inserting an element into the set of elements that are being searched for. In block 310, just as above, an element to be included in a set of elements may be received. This set element is to be inserted into the bloom filters. In block 320, a plurality of bloom filter indexes may be computed, based on the element. In block 330, the element may be inserted into the bloom filters using the plurality of bloom filter indexes.
  • In block 340 it may be determined if the implementation is using a CAM. If so, the process moves to block 345. In block 345, an empty entry in the memory may be located, wherein at least a portion of the memory is a CAM. In block 350 it may be determined if the implementation is storing indexes or the element itself in the CAM. If the bloom filter indexes are being stored in the CAM, the process moves to block 355. In block 355, the ordered set of bloom filter indexes is stored in the CAM of the located entry. In block 360, the element is stored, associated with the located entry. If it is determined in block 350 that indexes are not being stored, the process moves to block 365. In block 365, the element is stored in the CAM of the located entry.
  • If it is determined in block 340 that the implementation is not using a CAM, the process moves to block 370. In block 370, a hash of the ordered set of indexes is computed. In block 375, memory associated with the hash is identified. In block 380, the element is added to the identified memory.
  • FIG. 4 is an example of a high level flow diagram for determining if an element is in a set of elements. In block 410, a search element may be received. The search element is the element that may be checked against the bloom filters to determine if the search element may exist in the set of elements. In block 420, bloom filter indexes may be computed for the search element. As explained above, in one implementation, the bloom filter indexes may be computed using a series of hash functions. However, it should be understood that any other method of computing bloom filter indexes would also be suitable.
  • In block 430, the computed bloom filter indexes may be compared to a plurality bloom filters to determine if the search element is not included in the set of elements. As explained above, if any of the bloom filters indexed by the computed indexes do not contain a true value, then the search element can definitively be determined to not be included in the set of elements. However, if all of the bloom filter indexes do contain a true value, it can be determined that the search element has the possibility of being included in the set of elements.
  • In block 440, when the search element is not indicated as not being included in the set of elements, the search element may be compared to a memory to determine if the search element is included in the set of elements. In other words, if the bloom filters indicate a possibility of the element being included in the set of elements, the memory may be accessed to determine if the element is actually included in the set of elements or if it is a false positive.
  • FIG. 5 is another example of a high level flow diagram for determining if an element is in a set of elements. In block 510, just as above, a search element may be received. In block 520, again as above, bloom filter indexes for the search element may be computed. In block 530, the computed bloom filter indexes may be compared to bloom filters to determine if the search element is possible included in the set of elements.
  • In block 535, it may be determined if there was a match in block 530. If there was no match, the search element is not included in the set of elements. As such, the process moves to block 540, in which it is determined that the search element is not in the set of elements because the computed bloom filter indexes are not in the bloom filter. If the determination in block 535 is that the computed bloom filter indexes are included in the bloom filter, the process moves to block 545.
  • In block 545 it is determined if this implementation utilizes a CAM. If so, the process moves to block 550. In block 550 it is determined if the indexes are stored in the CAM. If so, the process moves to block 555. In block 555, it may be determined, using a CAM associative on the ordered set of indexes, that an entry exists for the ordered set of indexes. In block 560, it may be determined that the search element is associated with the entry. If the search element is associated with the entry, this means that the search element is included in the set of elements.
  • If it is determined in block 550 that the indexes are not stored, the process moves to block 565. In block 565 it may be determined, using a CAM associative on the search element that an entry exists for the search element. If an entry exists, then this means that the search element is included in the set of elements.
  • If it is determined in block 545 that the implementation does not use a CAM, the process moves to block 570. In block 570, a hash of the ordered set of indexes may be computed. In block 575 an entry from the memory may be retrieved based on the hash. In block 580, it may be determined if the search element is associated with the retrieved entry. If so, this indicates that the search element is included in the set of elements.

Claims (6)

1. A method comprising:
receiving an element to be included in a set of elements;
computing a plurality of bloom filter indexes based on the element;
inserting the element into a plurality of bloom filters using the plurality of bloom filter indexes; and
storing the element in a memory, wherein the element is accessed in the memory to eliminate false positives.
2. The method of claim 1 wherein the plurality of bloom filter indexes is an ordered set of indexes.
3. The method of claim 2 wherein storing the element in the memory further comprises:
locating an empty entry in the memory, wherein at least a portion of the entry is a content addressable memory;
storing the ordered set of bloom filter indexes in the content addressable memory portion of the located entry; and
storing the element associated with the located entry.
4. The method of claim 2 wherein storing the element in the memory further comprises:
locating an empty entry in the memory, wherein at least a portion of the entry is a content addressable memory; and
storing the element in the content addressable memory portion of the located entry.
5. The method of claim 2 wherein storing the element in the memory further comprises:
computing a hash of the ordered set of indexes;
identifying the memory associated with the hash; and
adding the element to the identified memory.
6.-15. (canceled)
US14/924,186 2013-05-17 2015-10-27 Bloom filter with memory element Abandoned US20160048585A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US14/924,186 US20160048585A1 (en) 2013-05-17 2015-10-27 Bloom filter with memory element

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US13/896,378 US9171153B2 (en) 2013-05-17 2013-05-17 Bloom filter with memory element
US14/924,186 US20160048585A1 (en) 2013-05-17 2015-10-27 Bloom filter with memory element

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US13/896,378 Division US9171153B2 (en) 2013-05-17 2013-05-17 Bloom filter with memory element

Publications (1)

Publication Number Publication Date
US20160048585A1 true US20160048585A1 (en) 2016-02-18

Family

ID=51896947

Family Applications (2)

Application Number Title Priority Date Filing Date
US13/896,378 Active 2033-10-12 US9171153B2 (en) 2013-05-17 2013-05-17 Bloom filter with memory element
US14/924,186 Abandoned US20160048585A1 (en) 2013-05-17 2015-10-27 Bloom filter with memory element

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US13/896,378 Active 2033-10-12 US9171153B2 (en) 2013-05-17 2013-05-17 Bloom filter with memory element

Country Status (1)

Country Link
US (2) US9171153B2 (en)

Families Citing this family (155)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9158667B2 (en) 2013-03-04 2015-10-13 Micron Technology, Inc. Apparatuses and methods for performing logical operations using sensing circuitry
US8964496B2 (en) 2013-07-26 2015-02-24 Micron Technology, Inc. Apparatuses and methods for performing compare operations using sensing circuitry
US8971124B1 (en) 2013-08-08 2015-03-03 Micron Technology, Inc. Apparatuses and methods for performing logical operations using sensing circuitry
US9153305B2 (en) 2013-08-30 2015-10-06 Micron Technology, Inc. Independently addressable memory array address spaces
US9019785B2 (en) 2013-09-19 2015-04-28 Micron Technology, Inc. Data shifting via a number of isolation devices
US9449675B2 (en) 2013-10-31 2016-09-20 Micron Technology, Inc. Apparatuses and methods for identifying an extremum value stored in an array of memory cells
US9430191B2 (en) 2013-11-08 2016-08-30 Micron Technology, Inc. Division operations for memory
US10445769B2 (en) * 2013-12-24 2019-10-15 Google Llc Systems and methods for audience measurement
US20150270015A1 (en) * 2014-03-19 2015-09-24 Micron Technology, Inc. Memory mapping
US9934856B2 (en) 2014-03-31 2018-04-03 Micron Technology, Inc. Apparatuses and methods for comparing data patterns in memory
US9455020B2 (en) 2014-06-05 2016-09-27 Micron Technology, Inc. Apparatuses and methods for performing an exclusive or operation using sensing circuitry
US10074407B2 (en) 2014-06-05 2018-09-11 Micron Technology, Inc. Apparatuses and methods for performing invert operations using sensing circuitry
US9704540B2 (en) 2014-06-05 2017-07-11 Micron Technology, Inc. Apparatuses and methods for parity determination using sensing circuitry
US9786335B2 (en) 2014-06-05 2017-10-10 Micron Technology, Inc. Apparatuses and methods for performing logical operations using sensing circuitry
US9449674B2 (en) 2014-06-05 2016-09-20 Micron Technology, Inc. Performing logical operations using sensing circuitry
US9910787B2 (en) 2014-06-05 2018-03-06 Micron Technology, Inc. Virtual address table
US9830999B2 (en) 2014-06-05 2017-11-28 Micron Technology, Inc. Comparison operations in memory
US9711207B2 (en) 2014-06-05 2017-07-18 Micron Technology, Inc. Performing logical operations using sensing circuitry
US9711206B2 (en) 2014-06-05 2017-07-18 Micron Technology, Inc. Performing logical operations using sensing circuitry
US9496023B2 (en) 2014-06-05 2016-11-15 Micron Technology, Inc. Comparison operations on logical representations of values in memory
US9779019B2 (en) 2014-06-05 2017-10-03 Micron Technology, Inc. Data storage layout
US10600076B2 (en) 2014-08-14 2020-03-24 Google Llc Systems and methods for obfuscated audience measurement
US10068652B2 (en) 2014-09-03 2018-09-04 Micron Technology, Inc. Apparatuses and methods for determining population count
US9747961B2 (en) 2014-09-03 2017-08-29 Micron Technology, Inc. Division operations in memory
US9589602B2 (en) 2014-09-03 2017-03-07 Micron Technology, Inc. Comparison operations in memory
US9898252B2 (en) 2014-09-03 2018-02-20 Micron Technology, Inc. Multiplication operations in memory
US9904515B2 (en) 2014-09-03 2018-02-27 Micron Technology, Inc. Multiplication operations in memory
US9847110B2 (en) 2014-09-03 2017-12-19 Micron Technology, Inc. Apparatuses and methods for storing a data value in multiple columns of an array corresponding to digits of a vector
US9740607B2 (en) 2014-09-03 2017-08-22 Micron Technology, Inc. Swap operations in memory
US9836218B2 (en) 2014-10-03 2017-12-05 Micron Technology, Inc. Computing reduction and prefix sum operations in memory
US9940026B2 (en) 2014-10-03 2018-04-10 Micron Technology, Inc. Multidimensional contiguous memory allocation
US10163467B2 (en) 2014-10-16 2018-12-25 Micron Technology, Inc. Multiple endianness compatibility
US10147480B2 (en) 2014-10-24 2018-12-04 Micron Technology, Inc. Sort operation in memory
US9779784B2 (en) 2014-10-29 2017-10-03 Micron Technology, Inc. Apparatuses and methods for performing logical operations using sensing circuitry
US10073635B2 (en) 2014-12-01 2018-09-11 Micron Technology, Inc. Multiple endianness compatibility
US9747960B2 (en) 2014-12-01 2017-08-29 Micron Technology, Inc. Apparatuses and methods for converting a mask to an index
US10032493B2 (en) 2015-01-07 2018-07-24 Micron Technology, Inc. Longest element length determination in memory
US10061590B2 (en) 2015-01-07 2018-08-28 Micron Technology, Inc. Generating and executing a control flow
US9583163B2 (en) 2015-02-03 2017-02-28 Micron Technology, Inc. Loop structure for operations in memory
US9614670B1 (en) 2015-02-05 2017-04-04 Ionic Security Inc. Systems and methods for encryption and provision of information security using platform services
WO2016126472A1 (en) 2015-02-06 2016-08-11 Micron Technology, Inc. Apparatuses and methods for scatter and gather
WO2016126474A1 (en) 2015-02-06 2016-08-11 Micron Technology, Inc. Apparatuses and methods for parallel writing to multiple memory device locations
CN107408404B (en) 2015-02-06 2021-02-12 美光科技公司 Apparatus and methods for memory devices as storage of program instructions
US9634992B1 (en) * 2015-02-28 2017-04-25 Palo Alto Networks, Inc. Probabilistic duplicate detection
CN107408408B (en) 2015-03-10 2021-03-05 美光科技公司 Apparatus and method for shift determination
US9898253B2 (en) 2015-03-11 2018-02-20 Micron Technology, Inc. Division operations on variable length elements in memory
US9741399B2 (en) 2015-03-11 2017-08-22 Micron Technology, Inc. Data shift by elements of a vector in memory
EP3268965A4 (en) 2015-03-12 2018-10-03 Micron Technology, INC. Apparatuses and methods for data movement
US10146537B2 (en) 2015-03-13 2018-12-04 Micron Technology, Inc. Vector population count determination in memory
US10049054B2 (en) 2015-04-01 2018-08-14 Micron Technology, Inc. Virtual register file
US10140104B2 (en) 2015-04-14 2018-11-27 Micron Technology, Inc. Target architecture determination
US9959923B2 (en) 2015-04-16 2018-05-01 Micron Technology, Inc. Apparatuses and methods to reverse data stored in memory
US10073786B2 (en) 2015-05-28 2018-09-11 Micron Technology, Inc. Apparatuses and methods for compute enabled cache
US9704541B2 (en) 2015-06-12 2017-07-11 Micron Technology, Inc. Simulating access lines
US9921777B2 (en) 2015-06-22 2018-03-20 Micron Technology, Inc. Apparatuses and methods for data transfer from sensing circuitry to a controller
US9996479B2 (en) 2015-08-17 2018-06-12 Micron Technology, Inc. Encryption of executables in computational memory
US9905276B2 (en) 2015-12-21 2018-02-27 Micron Technology, Inc. Control of sensing components in association with performing operations
US10503730B1 (en) 2015-12-28 2019-12-10 Ionic Security Inc. Systems and methods for cryptographically-secure queries using filters generated by multiple parties
US10740474B1 (en) 2015-12-28 2020-08-11 Ionic Security Inc. Systems and methods for generation of secure indexes for cryptographically-secure queries
US9952925B2 (en) 2016-01-06 2018-04-24 Micron Technology, Inc. Error code calculation on sensing circuitry
US10387887B2 (en) * 2016-01-12 2019-08-20 Sugarcrm Inc. Bloom filter driven data synchronization
US10048888B2 (en) 2016-02-10 2018-08-14 Micron Technology, Inc. Apparatuses and methods for partitioned parallel data movement
US10210195B2 (en) 2016-02-12 2019-02-19 International Business Machines Corporation Locating data in a set with a single index using multiple property values
US9892767B2 (en) 2016-02-12 2018-02-13 Micron Technology, Inc. Data gathering in memory
US10282438B2 (en) 2016-02-12 2019-05-07 International Business Machines Corporation Locating data in a set with a single index using multiple property values
US9971541B2 (en) 2016-02-17 2018-05-15 Micron Technology, Inc. Apparatuses and methods for data movement
US9899070B2 (en) 2016-02-19 2018-02-20 Micron Technology, Inc. Modified decode for corner turn
US10956439B2 (en) 2016-02-19 2021-03-23 Micron Technology, Inc. Data transfer with a bit vector operation device
US9697876B1 (en) 2016-03-01 2017-07-04 Micron Technology, Inc. Vertical bit vector shift in memory
US10262721B2 (en) 2016-03-10 2019-04-16 Micron Technology, Inc. Apparatuses and methods for cache invalidate
US9997232B2 (en) 2016-03-10 2018-06-12 Micron Technology, Inc. Processing in memory (PIM) capable memory device having sensing circuitry performing logic operations
US10379772B2 (en) 2016-03-16 2019-08-13 Micron Technology, Inc. Apparatuses and methods for operations using compressed and decompressed data
US9910637B2 (en) 2016-03-17 2018-03-06 Micron Technology, Inc. Signed division in memory
US11074988B2 (en) 2016-03-22 2021-07-27 Micron Technology, Inc. Apparatus and methods for debugging on a host and memory device
US10120740B2 (en) 2016-03-22 2018-11-06 Micron Technology, Inc. Apparatus and methods for debugging on a memory device
US10388393B2 (en) 2016-03-22 2019-08-20 Micron Technology, Inc. Apparatus and methods for debugging on a host and memory device
US10977033B2 (en) 2016-03-25 2021-04-13 Micron Technology, Inc. Mask patterns generated in memory from seed vectors
US10474581B2 (en) 2016-03-25 2019-11-12 Micron Technology, Inc. Apparatuses and methods for cache operations
US10430244B2 (en) 2016-03-28 2019-10-01 Micron Technology, Inc. Apparatuses and methods to determine timing of operations
US10074416B2 (en) 2016-03-28 2018-09-11 Micron Technology, Inc. Apparatuses and methods for data movement
US10453502B2 (en) 2016-04-04 2019-10-22 Micron Technology, Inc. Memory bank power coordination including concurrently performing a memory operation in a selected number of memory regions
US10607665B2 (en) 2016-04-07 2020-03-31 Micron Technology, Inc. Span mask generation
US9818459B2 (en) 2016-04-19 2017-11-14 Micron Technology, Inc. Invert operations using sensing circuitry
US10153008B2 (en) 2016-04-20 2018-12-11 Micron Technology, Inc. Apparatuses and methods for performing corner turn operations using sensing circuitry
US9659605B1 (en) 2016-04-20 2017-05-23 Micron Technology, Inc. Apparatuses and methods for performing corner turn operations using sensing circuitry
US10042608B2 (en) 2016-05-11 2018-08-07 Micron Technology, Inc. Signed division in memory
US9659610B1 (en) 2016-05-18 2017-05-23 Micron Technology, Inc. Apparatuses and methods for shifting data
US10049707B2 (en) 2016-06-03 2018-08-14 Micron Technology, Inc. Shifting data
US10387046B2 (en) 2016-06-22 2019-08-20 Micron Technology, Inc. Bank to bank data transfer
US10037785B2 (en) 2016-07-08 2018-07-31 Micron Technology, Inc. Scan chain operation in sensing circuitry
US10388360B2 (en) 2016-07-19 2019-08-20 Micron Technology, Inc. Utilization of data stored in an edge section of an array
US10387299B2 (en) 2016-07-20 2019-08-20 Micron Technology, Inc. Apparatuses and methods for transferring data
US10733089B2 (en) 2016-07-20 2020-08-04 Micron Technology, Inc. Apparatuses and methods for write address tracking
US9767864B1 (en) 2016-07-21 2017-09-19 Micron Technology, Inc. Apparatuses and methods for storing a data value in a sensing circuitry element
US9972367B2 (en) 2016-07-21 2018-05-15 Micron Technology, Inc. Shifting data in sensing circuitry
US10303632B2 (en) 2016-07-26 2019-05-28 Micron Technology, Inc. Accessing status information
US10468087B2 (en) 2016-07-28 2019-11-05 Micron Technology, Inc. Apparatuses and methods for operations in a self-refresh state
US9990181B2 (en) 2016-08-03 2018-06-05 Micron Technology, Inc. Apparatuses and methods for random number generation
US11029951B2 (en) 2016-08-15 2021-06-08 Micron Technology, Inc. Smallest or largest value element determination
US10606587B2 (en) 2016-08-24 2020-03-31 Micron Technology, Inc. Apparatus and methods related to microcode instructions indicating instruction types
US10466928B2 (en) 2016-09-15 2019-11-05 Micron Technology, Inc. Updating a register in memory
US10387058B2 (en) 2016-09-29 2019-08-20 Micron Technology, Inc. Apparatuses and methods to change data category values
US10014034B2 (en) 2016-10-06 2018-07-03 Micron Technology, Inc. Shifting data in sensing circuitry
US10529409B2 (en) 2016-10-13 2020-01-07 Micron Technology, Inc. Apparatuses and methods to perform logical operations using sensing circuitry
US9805772B1 (en) 2016-10-20 2017-10-31 Micron Technology, Inc. Apparatuses and methods to selectively perform logical operations
US10373666B2 (en) 2016-11-08 2019-08-06 Micron Technology, Inc. Apparatuses and methods for compute components formed over an array of memory cells
US10423353B2 (en) 2016-11-11 2019-09-24 Micron Technology, Inc. Apparatuses and methods for memory alignment
US9761300B1 (en) 2016-11-22 2017-09-12 Micron Technology, Inc. Data shift apparatuses and methods
US10402340B2 (en) 2017-02-21 2019-09-03 Micron Technology, Inc. Memory array page table walk
US10268389B2 (en) 2017-02-22 2019-04-23 Micron Technology, Inc. Apparatuses and methods for in-memory operations
US10403352B2 (en) 2017-02-22 2019-09-03 Micron Technology, Inc. Apparatuses and methods for compute in data path
US10838899B2 (en) 2017-03-21 2020-11-17 Micron Technology, Inc. Apparatuses and methods for in-memory data switching networks
US11222260B2 (en) 2017-03-22 2022-01-11 Micron Technology, Inc. Apparatuses and methods for operating neural networks
US10185674B2 (en) 2017-03-22 2019-01-22 Micron Technology, Inc. Apparatus and methods for in data path compute operations
US10049721B1 (en) 2017-03-27 2018-08-14 Micron Technology, Inc. Apparatuses and methods for in-memory operations
US10043570B1 (en) 2017-04-17 2018-08-07 Micron Technology, Inc. Signed element compare in memory
US10147467B2 (en) 2017-04-17 2018-12-04 Micron Technology, Inc. Element value comparison in memory
US9997212B1 (en) 2017-04-24 2018-06-12 Micron Technology, Inc. Accessing data in memory
US10942843B2 (en) 2017-04-25 2021-03-09 Micron Technology, Inc. Storing data elements of different lengths in respective adjacent rows or columns according to memory shapes
US10236038B2 (en) 2017-05-15 2019-03-19 Micron Technology, Inc. Bank to bank data transfer
US10068664B1 (en) 2017-05-19 2018-09-04 Micron Technology, Inc. Column repair in memory
US10013197B1 (en) 2017-06-01 2018-07-03 Micron Technology, Inc. Shift skip
US10262701B2 (en) 2017-06-07 2019-04-16 Micron Technology, Inc. Data transfer between subarrays in memory
US10152271B1 (en) 2017-06-07 2018-12-11 Micron Technology, Inc. Data replication
US10635654B2 (en) * 2017-06-12 2020-04-28 Samsung Electronics Co., Ltd. Data journaling for large solid state storage devices with low DRAM/SRAM
US10318168B2 (en) 2017-06-19 2019-06-11 Micron Technology, Inc. Apparatuses and methods for simultaneous in data path compute operations
US10162005B1 (en) 2017-08-09 2018-12-25 Micron Technology, Inc. Scan chain operations
US10534553B2 (en) 2017-08-30 2020-01-14 Micron Technology, Inc. Memory array accessibility
US10741239B2 (en) 2017-08-31 2020-08-11 Micron Technology, Inc. Processing in memory device including a row address strobe manager
US10416927B2 (en) 2017-08-31 2019-09-17 Micron Technology, Inc. Processing in memory
US10346092B2 (en) 2017-08-31 2019-07-09 Micron Technology, Inc. Apparatuses and methods for in-memory operations using timing circuitry
US10409739B2 (en) 2017-10-24 2019-09-10 Micron Technology, Inc. Command selection policy
US10522210B2 (en) 2017-12-14 2019-12-31 Micron Technology, Inc. Apparatuses and methods for subarray addressing
US10332586B1 (en) 2017-12-19 2019-06-25 Micron Technology, Inc. Apparatuses and methods for subrow addressing
US10614875B2 (en) 2018-01-30 2020-04-07 Micron Technology, Inc. Logical operations using memory cells
US11194477B2 (en) 2018-01-31 2021-12-07 Micron Technology, Inc. Determination of a match between data values stored by three or more arrays
US10437557B2 (en) 2018-01-31 2019-10-08 Micron Technology, Inc. Determination of a match between data values stored by several arrays
US10725696B2 (en) 2018-04-12 2020-07-28 Micron Technology, Inc. Command selection policy with read priority
US10440341B1 (en) 2018-06-07 2019-10-08 Micron Technology, Inc. Image processor formed in an array of memory cells
US10248646B1 (en) 2018-08-22 2019-04-02 Cognigo Research Ltd. Token matching in large document corpora
US11175915B2 (en) 2018-10-10 2021-11-16 Micron Technology, Inc. Vector registers implemented in memory
US10769071B2 (en) 2018-10-10 2020-09-08 Micron Technology, Inc. Coherent memory access
US10483978B1 (en) 2018-10-16 2019-11-19 Micron Technology, Inc. Memory device processing
US11184446B2 (en) 2018-12-05 2021-11-23 Micron Technology, Inc. Methods and apparatus for incentivizing participation in fog networks
US11012417B2 (en) 2019-04-30 2021-05-18 Centripetal Networks, Inc. Methods and systems for efficient packet filtering
US11012414B2 (en) 2019-04-30 2021-05-18 Centripetal Networks, Inc. Methods and systems for prevention of attacks associated with the domain name system
US10715493B1 (en) 2019-07-03 2020-07-14 Centripetal Networks, Inc. Methods and systems for efficient cyber protections of mobile devices
US11582191B2 (en) 2019-07-03 2023-02-14 Centripetal Networks, Inc. Cyber protections of remote networks via selective policy enforcement at a central network
US10867655B1 (en) 2019-07-08 2020-12-15 Micron Technology, Inc. Methods and apparatus for dynamically adjusting performance of partitioned memory
US11360768B2 (en) 2019-08-14 2022-06-14 Micron Technolgy, Inc. Bit string operations in memory
US11449577B2 (en) 2019-11-20 2022-09-20 Micron Technology, Inc. Methods and apparatus for performing video processing matrix operations within a memory array
US11853385B2 (en) 2019-12-05 2023-12-26 Micron Technology, Inc. Methods and apparatus for performing diversity matrix operations within a memory array
US11227641B1 (en) 2020-07-21 2022-01-18 Micron Technology, Inc. Arithmetic operations in memory
US11663058B1 (en) 2021-05-03 2023-05-30 Amazon Technologies, Inc. Preemptive filtering of events of an event bus with a deterministic filter
US11809378B2 (en) 2021-10-15 2023-11-07 Morgan Stanley Services Group Inc. Network file deduplication using decaying bloom filters

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090046581A1 (en) * 2007-08-14 2009-02-19 Anand Eswaran Flow Estimator
US20110219010A1 (en) * 2010-03-03 2011-09-08 Ewha University Industry Collaboration Foundation Method and apparatus for packet classification using bloom filter
US20140025684A1 (en) * 2012-07-20 2014-01-23 Apple Inc. Indexing and searching a data collection

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7444515B2 (en) 2003-08-14 2008-10-28 Washington University Method and apparatus for detecting predefined signatures in packet payload using Bloom filters
US7779463B2 (en) * 2004-05-11 2010-08-17 The Trustees Of Columbia University In The City Of New York Systems and methods for correlating and distributing intrusion alert information among collaborating computer systems
US7937428B2 (en) * 2006-12-21 2011-05-03 International Business Machines Corporation System and method for generating and using a dynamic bloom filter
KR100960117B1 (en) 2007-12-17 2010-05-28 한국전자통신연구원 Signature Pattern Matching Method, the System for the Same and Computer Readable Medium Storing a Signature Pattern
US8055633B2 (en) 2008-01-21 2011-11-08 International Business Machines Corporation Method, system and computer program product for duplicate detection

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090046581A1 (en) * 2007-08-14 2009-02-19 Anand Eswaran Flow Estimator
US20110219010A1 (en) * 2010-03-03 2011-09-08 Ewha University Industry Collaboration Foundation Method and apparatus for packet classification using bloom filter
US20140025684A1 (en) * 2012-07-20 2014-01-23 Apple Inc. Indexing and searching a data collection

Also Published As

Publication number Publication date
US20140344934A1 (en) 2014-11-20
US9171153B2 (en) 2015-10-27

Similar Documents

Publication Publication Date Title
US9171153B2 (en) Bloom filter with memory element
US9798714B2 (en) System and method for keyword spotting using representative dictionary
Kumar et al. Advanced algorithms for fast and scalable deep packet inspection
Liu et al. A fast string-matching algorithm for network processor-based intrusion detection system
US20140310307A1 (en) Exact Match Lookup with Variable Key Sizes
US9361307B2 (en) Rejecting rows when scanning a collision chain that is associated with a page filter
EP2830260B1 (en) Rule matching method and device
US20150220845A1 (en) Method And Apparatus For Optimizing Finite Automata Processing
US20070078827A1 (en) Searching for information utilizing a probabilistic detector
WO2015009542A1 (en) Semantics-oriented analysis of log message content
US10176187B2 (en) Method and apparatus for generating a plurality of indexed data fields
Hubballi et al. Layered higher order n-grams for hardening payload based anomaly intrusion detection
Van Der Merwe et al. Turning evil regexes harmless
CN109150962B (en) Method for rapidly identifying HTTP request header through keywords
CN111061972B (en) AC searching optimization method and device for URL path matching
US7853591B1 (en) Protection of database operations
US8935270B1 (en) Content search system including multiple deterministic finite automaton engines having shared memory resources
CN107992402A (en) Blog management method and log management apparatus
US8051060B1 (en) Automatic detection of separators for compression
US8539547B2 (en) Policy selector representation for fast retrieval
CN106250440B (en) Document management method and device
US10462157B2 (en) Multi-pattern matching algorithm and processing apparatus using the same
US11025650B2 (en) Multi-pattern policy detection system and method
CN113992364A (en) Network data packet blocking optimization method and system
KR101587756B1 (en) Apparatus and method for searching string data using bloom filter pre-searching

Legal Events

Date Code Title Description
AS Assignment

Owner name: HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P., TEXAS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:JORGENSEN, STEVEN GLEN;REEL/FRAME:038266/0112

Effective date: 20151214

AS Assignment

Owner name: HEWLETT PACKARD ENTERPRISE DEVELOPMENT LP, TEXAS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:HEWLETT-PACKARD DEVELOPMENT COMPANY, L.P.;REEL/FRAME:039023/0161

Effective date: 20151027

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION

AS Assignment

Owner name: GS YUASA INTERNATIONAL LTD., JAPAN

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:KAWAI, AKIO;KOZONO, SHO;SIGNING DATES FROM 20221003 TO 20221008;REEL/FRAME:061715/0404