zeek/src/storage/backend/sqlite
Benjamin Bannier 2f67539c0f Prevent SQLite storage backend from serving expired entries
The SQLite storage backend implements expiration by hand and garbage
collection is done in `DoExpire`. This previously relied exclusively on
gets not running within `Storage::expire_interval` of the put, otherwise
we would potentially serve expired entries.

With this patch we explictly check that entries are not expired before
serving them so that the SQLite backend should never serve expired
entries.
2025-07-15 15:47:31 -07:00
..
CMakeLists.txt Add basic SQLite storage backend 2025-03-18 09:32:34 -07:00
Plugin.cc Mark storage classes as final where appropriate 2025-04-14 10:11:13 -07:00
SQLite.cc Prevent SQLite storage backend from serving expired entries 2025-07-15 15:47:31 -07:00
SQLite.h Handle potential contention when running sqlite expiration 2025-06-05 10:21:50 -07:00