-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Datasets locking/v3 #12216
Draft
inashivb
wants to merge
2
commits into
OISF:master
Choose a base branch
from
inashivb:datasets-locking/v3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+116
−73
Draft
Datasets locking/v3 #12216
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
// Author: Shivani Bhardwaj <[email protected]> | ||
|
||
//! This module exposes items from the datasets C code to Rust. | ||
|
||
use std::fs::{File, OpenOptions}; | ||
use std::io::{self, BufRead}; | ||
use std::path::Path; | ||
use std::ffi::{c_char, CStr}; | ||
use base64::{Engine, engine::general_purpose::STANDARD}; | ||
|
||
/// Opaque Dataset type defined in C | ||
#[derive(Copy, Clone)] | ||
pub enum Dataset {} | ||
|
||
// Simple C type converted to Rust | ||
#[derive(Debug, PartialEq)] | ||
#[repr(C)] | ||
pub struct DataRepType { | ||
pub value: u16, | ||
} | ||
|
||
// Extern fns operating on the opaque Dataset type above | ||
/// cbindgen:ignore | ||
extern { | ||
pub fn DatasetAdd(set: &Dataset, data: *const u8, len: u32) -> i32; | ||
pub fn DatasetAddwRep(set: &Dataset, data: *const u8, len: u32, rep: *const DataRepType) -> i32; | ||
} | ||
|
||
#[no_mangle] | ||
pub unsafe extern "C" fn ProcessDatasets(set: &Dataset, name: *const c_char, fname: *const c_char, fmode: *const c_char) -> i32 { | ||
let file_string = CStr::from_ptr(fname).to_str().unwrap(); | ||
let mode = CStr::from_ptr(fmode).to_str().unwrap(); | ||
let set_name = CStr::from_ptr(name).to_str().unwrap(); | ||
let filename = Path::new(file_string); | ||
// SCLogNotice!("Path: {:?}", filename); | ||
if let Ok(lines) = read_lines(filename, mode) { | ||
for line in lines.flatten() { | ||
// SCLogNotice!("{}", line); | ||
let v: Vec<&str> = line.split(',').collect(); | ||
// Ignore empty and invalid lines in dataset/rep file | ||
if v.is_empty() || v.len() > 2 { | ||
continue; | ||
} | ||
if v.len() == 1 { | ||
// Dataset | ||
let mut decoded: Vec<u8> = vec![]; | ||
if STANDARD.decode_vec(v[0], &mut decoded).is_err() { | ||
// FatalErrorOnInit STODO | ||
SCLogError!("bad base64 encoding {}", set_name); | ||
return -2; | ||
} | ||
DatasetAdd(&set, decoded.as_ptr(), decoded.len() as u32); | ||
} else { | ||
// Datarep | ||
let mut decoded: Vec<u8> = vec![]; | ||
if STANDARD.decode_vec(v[0], &mut decoded).is_err() { | ||
// FatalErrorOnInit STODO | ||
SCLogError!("bad base64 encoding {}", set_name); | ||
return -2; | ||
} | ||
if let Ok(val) = v[1].to_string().parse::<u16>() { | ||
let rep: DataRepType = DataRepType { value: val }; | ||
DatasetAddwRep(&set, decoded.as_ptr(), decoded.len() as u32, &rep); | ||
} else { | ||
// FatalErrorOnInit STODO | ||
SCLogError!("Invalid datarep value {}", set_name); | ||
return -2; | ||
} | ||
} | ||
} | ||
} else { | ||
SCLogNotice!("Couldn't open file"); | ||
return -1; | ||
} | ||
SCLogNotice!("All OK from rust parser"); | ||
0 | ||
} | ||
|
||
fn read_lines<P>(filename: P, fmode: &str) -> io::Result<io::Lines<io::BufReader<File>>> | ||
where P: AsRef<Path>, { | ||
let file: File; | ||
if fmode == "r" { | ||
file = File::open(filename)?; | ||
} else { | ||
file = OpenOptions::new().append(true).create(true).open(filename)?; | ||
} | ||
Ok(io::BufReader::new(file).lines()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, something is going off here when the file is opened in append mode.
Edit: It's really bad. There's an infinite loop during the
flatten
call. Debugging..