mirror of
https://github.com/github/codeql.git
synced 2026-07-07 20:45:28 +02:00
Compare commits
20 Commits
codeql-cli
...
nickrolfe/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b8146a1089 | ||
|
|
b3f4357dc8 | ||
|
|
2e1b09fd75 | ||
|
|
d9a1046e0e | ||
|
|
1bf9c19638 | ||
|
|
f090a3b440 | ||
|
|
1e39259e26 | ||
|
|
d9a2347178 | ||
|
|
280023c45a | ||
|
|
dd27ed8392 | ||
|
|
39436828de | ||
|
|
e4a3e9ee23 | ||
|
|
340b40e8f3 | ||
|
|
55f427ca0e | ||
|
|
ea5d696d55 | ||
|
|
6908a0dc12 | ||
|
|
189e75bfe2 | ||
|
|
b502e68783 | ||
|
|
6d28e87f57 | ||
|
|
5cada400f1 |
4
.github/workflows/ruby-qltest.yml
vendored
4
.github/workflows/ruby-qltest.yml
vendored
@@ -32,14 +32,14 @@ jobs:
|
|||||||
- uses: ./ruby/actions/create-extractor-pack
|
- uses: ./ruby/actions/create-extractor-pack
|
||||||
- name: Run QL tests
|
- name: Run QL tests
|
||||||
run: |
|
run: |
|
||||||
codeql test run --search-path "${{ github.workspace }}/ruby/extractor-pack" --check-databases --check-unused-labels --check-repeated-labels --check-redefined-labels --check-use-before-definition --consistency-queries ql/consistency-queries ql/test
|
codeql test run --threads=0 --ram 5000 --search-path "${{ github.workspace }}/ruby/extractor-pack" --check-databases --check-unused-labels --check-repeated-labels --check-redefined-labels --check-use-before-definition --consistency-queries ql/consistency-queries ql/test
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
- name: Check QL formatting
|
- name: Check QL formatting
|
||||||
run: find ql "(" -name "*.ql" -or -name "*.qll" ")" -print0 | xargs -0 codeql query format --check-only
|
run: find ql "(" -name "*.ql" -or -name "*.qll" ")" -print0 | xargs -0 codeql query format --check-only
|
||||||
- name: Check QL compilation
|
- name: Check QL compilation
|
||||||
run: |
|
run: |
|
||||||
codeql query compile --check-only --threads=4 --warnings=error "ql/src" "ql/examples"
|
codeql query compile --check-only --threads=0 --ram 5000 --warnings=error "ql/src" "ql/examples"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
- name: Check DB upgrade scripts
|
- name: Check DB upgrade scripts
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* An IR taint tracking library that uses an IR DataFlow configuration to track
|
||||||
|
* taint from user inputs as defined by `semmle.code.cpp.security.Security`.
|
||||||
|
*/
|
||||||
|
|
||||||
import cpp
|
import cpp
|
||||||
import semmle.code.cpp.security.Security
|
import semmle.code.cpp.security.Security
|
||||||
private import semmle.code.cpp.ir.dataflow.DataFlow
|
private import semmle.code.cpp.ir.dataflow.DataFlow
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Support for tracking tainted data through the program.
|
* Support for tracking tainted data through the program. This is an alias for
|
||||||
|
* `semmle.code.cpp.ir.dataflow.DefaultTaintTracking` provided for backwards
|
||||||
|
* compatibility.
|
||||||
*
|
*
|
||||||
* Prefer to use `semmle.code.cpp.dataflow.TaintTracking` when designing new queries.
|
* Prefer to use `semmle.code.cpp.dataflow.TaintTracking` or
|
||||||
|
* `semmle.code.cpp.ir.dataflow.TaintTracking` when designing new queries.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
|
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
|
||||||
|
|||||||
@@ -12,23 +12,33 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import cpp
|
import cpp
|
||||||
import semmle.code.cpp.security.BufferWrite
|
import semmle.code.cpp.security.BufferWrite as BufferWrite
|
||||||
import semmle.code.cpp.security.TaintTracking
|
|
||||||
import semmle.code.cpp.security.SensitiveExprs
|
import semmle.code.cpp.security.SensitiveExprs
|
||||||
import TaintedWithPath
|
import semmle.code.cpp.security.FlowSources
|
||||||
|
import semmle.code.cpp.ir.dataflow.TaintTracking
|
||||||
|
import DataFlow::PathGraph
|
||||||
|
|
||||||
class Configuration extends TaintTrackingConfiguration {
|
/**
|
||||||
override predicate isSink(Element tainted) { exists(BufferWrite w | w.getASource() = tainted) }
|
* Taint flow from user input to a buffer write.
|
||||||
|
*/
|
||||||
|
class ToBufferConfiguration extends TaintTracking::Configuration {
|
||||||
|
ToBufferConfiguration() { this = "ToBufferConfiguration" }
|
||||||
|
|
||||||
|
override predicate isSource(DataFlow::Node source) { source instanceof FlowSource }
|
||||||
|
|
||||||
|
override predicate isSink(DataFlow::Node sink) {
|
||||||
|
exists(BufferWrite::BufferWrite w | w.getASource() = sink.asExpr())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
from
|
from
|
||||||
BufferWrite w, Expr taintedArg, Expr taintSource, PathNode sourceNode, PathNode sinkNode,
|
ToBufferConfiguration config, BufferWrite::BufferWrite w, DataFlow::PathNode sourceNode,
|
||||||
string taintCause, SensitiveExpr dest
|
DataFlow::PathNode sinkNode, FlowSource source, SensitiveExpr dest
|
||||||
where
|
where
|
||||||
taintedWithPath(taintSource, taintedArg, sourceNode, sinkNode) and
|
config.hasFlowPath(sourceNode, sinkNode) and
|
||||||
isUserInput(taintSource, taintCause) and
|
sourceNode.getNode() = source and
|
||||||
w.getASource() = taintedArg and
|
w.getASource() = sinkNode.getNode().asExpr() and
|
||||||
dest = w.getDest()
|
dest = w.getDest()
|
||||||
select w, sourceNode, sinkNode,
|
select w, sourceNode, sinkNode,
|
||||||
"This write into buffer '" + dest.toString() + "' may contain unencrypted data from $@",
|
"This write into buffer '" + dest.toString() + "' may contain unencrypted data from $@", source,
|
||||||
taintSource, "user input (" + taintCause + ")"
|
"user input (" + source.getSourceType() + ")"
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
category: minorAnalysis
|
||||||
|
---
|
||||||
|
* The `cpp/cleartext-storage-buffer` query has been updated to use the `semmle.code.cpp.dataflow.TaintTracking` library.
|
||||||
@@ -1,18 +1,8 @@
|
|||||||
edges
|
edges
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input |
|
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input |
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input |
|
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input |
|
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input |
|
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input indirection |
|
|
||||||
| test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input indirection |
|
|
||||||
subpaths
|
|
||||||
nodes
|
nodes
|
||||||
| test.cpp:54:17:54:20 | argv | semmle.label | argv |
|
| test.cpp:54:17:54:20 | argv | semmle.label | argv |
|
||||||
| test.cpp:54:17:54:20 | argv | semmle.label | argv |
|
|
||||||
| test.cpp:58:25:58:29 | input | semmle.label | input |
|
| test.cpp:58:25:58:29 | input | semmle.label | input |
|
||||||
| test.cpp:58:25:58:29 | input | semmle.label | input |
|
subpaths
|
||||||
| test.cpp:58:25:58:29 | input | semmle.label | input |
|
|
||||||
| test.cpp:58:25:58:29 | input indirection | semmle.label | input indirection |
|
|
||||||
| test.cpp:58:25:58:29 | input indirection | semmle.label | input indirection |
|
|
||||||
#select
|
#select
|
||||||
| test.cpp:58:3:58:9 | call to sprintf | test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input | This write into buffer 'passwd' may contain unencrypted data from $@ | test.cpp:54:17:54:20 | argv | user input (argv) |
|
| test.cpp:58:3:58:9 | call to sprintf | test.cpp:54:17:54:20 | argv | test.cpp:58:25:58:29 | input | This write into buffer 'passwd' may contain unencrypted data from $@ | test.cpp:54:17:54:20 | argv | user input (a command-line argument) |
|
||||||
|
|||||||
BIN
ruby/Cargo.lock
generated
BIN
ruby/Cargo.lock
generated
Binary file not shown.
@@ -18,3 +18,4 @@ tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
|||||||
rayon = "1.5.0"
|
rayon = "1.5.0"
|
||||||
num_cpus = "1.13.0"
|
num_cpus = "1.13.0"
|
||||||
regex = "1.4.3"
|
regex = "1.4.3"
|
||||||
|
indexmap = "1.7.0"
|
||||||
@@ -1,161 +1,111 @@
|
|||||||
|
use crate::trap;
|
||||||
|
use indexmap::IndexMap;
|
||||||
use node_types::{EntryKind, Field, NodeTypeMap, Storage, TypeName};
|
use node_types::{EntryKind, Field, NodeTypeMap, Storage, TypeName};
|
||||||
use std::borrow::Cow;
|
|
||||||
use std::collections::BTreeMap as Map;
|
|
||||||
use std::collections::BTreeSet as Set;
|
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::io::Write;
|
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use tracing::{error, info, span, Level};
|
use tracing::{error, info, span, Level};
|
||||||
use tree_sitter::{Language, Node, Parser, Range, Tree};
|
use tree_sitter::{Language, Node, Parser, Range, Tree};
|
||||||
|
|
||||||
pub struct TrapWriter {
|
pub fn populate_file(writer: &mut trap::Writer, absolute_path: &Path) -> trap::Label {
|
||||||
/// The accumulated trap entries
|
let (file_label, fresh) =
|
||||||
trap_output: Vec<TrapEntry>,
|
writer.global_id(trap::full_id_for_file(&normalize_path(absolute_path)));
|
||||||
/// A counter for generating fresh labels
|
if fresh {
|
||||||
counter: u32,
|
writer.add_tuple(
|
||||||
/// cache of global keys
|
"files",
|
||||||
global_keys: std::collections::HashMap<String, Label>,
|
vec![
|
||||||
|
trap::Arg::Label(file_label),
|
||||||
|
trap::Arg::String(normalize_path(absolute_path)),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
populate_parent_folders(writer, file_label, absolute_path.parent());
|
||||||
|
}
|
||||||
|
file_label
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_trap_writer() -> TrapWriter {
|
fn populate_empty_file(writer: &mut trap::Writer) -> trap::Label {
|
||||||
TrapWriter {
|
let (file_label, fresh) = writer.global_id("empty;sourcefile".to_owned());
|
||||||
counter: 0,
|
if fresh {
|
||||||
trap_output: Vec::new(),
|
writer.add_tuple(
|
||||||
global_keys: std::collections::HashMap::new(),
|
"files",
|
||||||
|
vec![
|
||||||
|
trap::Arg::Label(file_label),
|
||||||
|
trap::Arg::String("".to_string()),
|
||||||
|
],
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
file_label
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TrapWriter {
|
pub fn populate_empty_location(writer: &mut trap::Writer) {
|
||||||
/// Gets a label that will hold the unique ID of the passed string at import time.
|
let file_label = populate_empty_file(writer);
|
||||||
/// This can be used for incrementally importable TRAP files -- use globally unique
|
location(writer, file_label, 0, 0, 0, 0);
|
||||||
/// strings to compute a unique ID for table tuples.
|
}
|
||||||
///
|
|
||||||
/// Note: You probably want to make sure that the key strings that you use are disjoint
|
|
||||||
/// for disjoint column types; the standard way of doing this is to prefix (or append)
|
|
||||||
/// the column type name to the ID. Thus, you might identify methods in Java by the
|
|
||||||
/// full ID "methods_com.method.package.DeclaringClass.method(argumentList)".
|
|
||||||
|
|
||||||
fn fresh_id(&mut self) -> Label {
|
pub fn populate_parent_folders(
|
||||||
let label = Label(self.counter);
|
writer: &mut trap::Writer,
|
||||||
self.counter += 1;
|
child_label: trap::Label,
|
||||||
self.trap_output.push(TrapEntry::FreshId(label));
|
path: Option<&Path>,
|
||||||
label
|
) {
|
||||||
}
|
let mut path = path;
|
||||||
|
let mut child_label = child_label;
|
||||||
fn global_id(&mut self, key: &str) -> (Label, bool) {
|
loop {
|
||||||
if let Some(label) = self.global_keys.get(key) {
|
match path {
|
||||||
return (*label, false);
|
None => break,
|
||||||
}
|
Some(folder) => {
|
||||||
let label = Label(self.counter);
|
let (folder_label, fresh) =
|
||||||
self.counter += 1;
|
writer.global_id(trap::full_id_for_folder(&normalize_path(folder)));
|
||||||
self.global_keys.insert(key.to_owned(), label);
|
writer.add_tuple(
|
||||||
self.trap_output
|
"containerparent",
|
||||||
.push(TrapEntry::MapLabelToKey(label, key.to_owned()));
|
vec![
|
||||||
(label, true)
|
trap::Arg::Label(folder_label),
|
||||||
}
|
trap::Arg::Label(child_label),
|
||||||
|
],
|
||||||
fn add_tuple(&mut self, table_name: &str, args: Vec<Arg>) {
|
);
|
||||||
self.trap_output
|
if fresh {
|
||||||
.push(TrapEntry::GenericTuple(table_name.to_owned(), args))
|
writer.add_tuple(
|
||||||
}
|
"folders",
|
||||||
|
vec![
|
||||||
fn populate_file(&mut self, absolute_path: &Path) -> Label {
|
trap::Arg::Label(folder_label),
|
||||||
let (file_label, fresh) = self.global_id(&full_id_for_file(absolute_path));
|
trap::Arg::String(normalize_path(folder)),
|
||||||
if fresh {
|
],
|
||||||
self.add_tuple(
|
|
||||||
"files",
|
|
||||||
vec![
|
|
||||||
Arg::Label(file_label),
|
|
||||||
Arg::String(normalize_path(absolute_path)),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
self.populate_parent_folders(file_label, absolute_path.parent());
|
|
||||||
}
|
|
||||||
file_label
|
|
||||||
}
|
|
||||||
|
|
||||||
fn populate_empty_file(&mut self) -> Label {
|
|
||||||
let (file_label, fresh) = self.global_id("empty;sourcefile");
|
|
||||||
if fresh {
|
|
||||||
self.add_tuple(
|
|
||||||
"files",
|
|
||||||
vec![Arg::Label(file_label), Arg::String("".to_string())],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
file_label
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn populate_empty_location(&mut self) {
|
|
||||||
let file_label = self.populate_empty_file();
|
|
||||||
self.location(file_label, 0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn populate_parent_folders(&mut self, child_label: Label, path: Option<&Path>) {
|
|
||||||
let mut path = path;
|
|
||||||
let mut child_label = child_label;
|
|
||||||
loop {
|
|
||||||
match path {
|
|
||||||
None => break,
|
|
||||||
Some(folder) => {
|
|
||||||
let (folder_label, fresh) = self.global_id(&full_id_for_folder(folder));
|
|
||||||
self.add_tuple(
|
|
||||||
"containerparent",
|
|
||||||
vec![Arg::Label(folder_label), Arg::Label(child_label)],
|
|
||||||
);
|
);
|
||||||
if fresh {
|
path = folder.parent();
|
||||||
self.add_tuple(
|
child_label = folder_label;
|
||||||
"folders",
|
} else {
|
||||||
vec![
|
break;
|
||||||
Arg::Label(folder_label),
|
|
||||||
Arg::String(normalize_path(folder)),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
path = folder.parent();
|
|
||||||
child_label = folder_label;
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn location(
|
fn location(
|
||||||
&mut self,
|
writer: &mut trap::Writer,
|
||||||
file_label: Label,
|
file_label: trap::Label,
|
||||||
start_line: usize,
|
start_line: usize,
|
||||||
start_column: usize,
|
start_column: usize,
|
||||||
end_line: usize,
|
end_line: usize,
|
||||||
end_column: usize,
|
end_column: usize,
|
||||||
) -> Label {
|
) -> trap::Label {
|
||||||
let (loc_label, fresh) = self.global_id(&format!(
|
let (loc_label, fresh) = writer.global_id(format!(
|
||||||
"loc,{{{}}},{},{},{},{}",
|
"loc,{{{}}},{},{},{},{}",
|
||||||
file_label, start_line, start_column, end_line, end_column
|
file_label, start_line, start_column, end_line, end_column
|
||||||
));
|
));
|
||||||
if fresh {
|
if fresh {
|
||||||
self.add_tuple(
|
writer.add_tuple(
|
||||||
"locations_default",
|
"locations_default",
|
||||||
vec![
|
vec![
|
||||||
Arg::Label(loc_label),
|
trap::Arg::Label(loc_label),
|
||||||
Arg::Label(file_label),
|
trap::Arg::Label(file_label),
|
||||||
Arg::Int(start_line),
|
trap::Arg::Int(start_line),
|
||||||
Arg::Int(start_column),
|
trap::Arg::Int(start_column),
|
||||||
Arg::Int(end_line),
|
trap::Arg::Int(end_line),
|
||||||
Arg::Int(end_column),
|
trap::Arg::Int(end_column),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
|
||||||
loc_label
|
|
||||||
}
|
|
||||||
|
|
||||||
fn comment(&mut self, text: String) {
|
|
||||||
self.trap_output.push(TrapEntry::Comment(text));
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn output(self, writer: &mut dyn Write) -> std::io::Result<()> {
|
|
||||||
write!(writer, "{}", Program(self.trap_output))
|
|
||||||
}
|
}
|
||||||
|
loc_label
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Extracts the source file at `path`, which is assumed to be canonicalized.
|
/// Extracts the source file at `path`, which is assumed to be canonicalized.
|
||||||
@@ -163,71 +113,42 @@ pub fn extract(
|
|||||||
language: Language,
|
language: Language,
|
||||||
language_prefix: &str,
|
language_prefix: &str,
|
||||||
schema: &NodeTypeMap,
|
schema: &NodeTypeMap,
|
||||||
trap_writer: &mut TrapWriter,
|
trap_writer: &mut trap::Writer,
|
||||||
path: &Path,
|
path: &Path,
|
||||||
source: &[u8],
|
source: &[u8],
|
||||||
ranges: &[Range],
|
ranges: &[Range],
|
||||||
) -> std::io::Result<()> {
|
) -> std::io::Result<()> {
|
||||||
|
let path_str = format!("{}", path.display());
|
||||||
let span = span!(
|
let span = span!(
|
||||||
Level::TRACE,
|
Level::TRACE,
|
||||||
"extract",
|
"extract",
|
||||||
file = %path.display()
|
file = %path_str
|
||||||
);
|
);
|
||||||
|
|
||||||
let _enter = span.enter();
|
let _enter = span.enter();
|
||||||
|
|
||||||
info!("extracting: {}", path.display());
|
info!("extracting: {}", path_str);
|
||||||
|
|
||||||
let mut parser = Parser::new();
|
let mut parser = Parser::new();
|
||||||
parser.set_language(language).unwrap();
|
parser.set_language(language).unwrap();
|
||||||
parser.set_included_ranges(ranges).unwrap();
|
parser.set_included_ranges(ranges).unwrap();
|
||||||
let tree = parser.parse(&source, None).expect("Failed to parse file");
|
let tree = parser.parse(&source, None).expect("Failed to parse file");
|
||||||
trap_writer.comment(format!("Auto-generated TRAP file for {}", path.display()));
|
let file_label = populate_file(trap_writer, path);
|
||||||
let file_label = &trap_writer.populate_file(path);
|
let mut visitor = Visitor::new(
|
||||||
let mut visitor = Visitor {
|
|
||||||
source,
|
source,
|
||||||
trap_writer,
|
trap_writer,
|
||||||
// TODO: should we handle path strings that are not valid UTF8 better?
|
// TODO: should we handle path strings that are not valid UTF8 better?
|
||||||
path: format!("{}", path.display()),
|
&path_str,
|
||||||
file_label: *file_label,
|
file_label,
|
||||||
toplevel_child_counter: 0,
|
|
||||||
stack: Vec::new(),
|
|
||||||
language_prefix,
|
language_prefix,
|
||||||
schema,
|
schema,
|
||||||
};
|
);
|
||||||
traverse(&tree, &mut visitor);
|
traverse(&tree, &mut visitor);
|
||||||
|
|
||||||
parser.reset();
|
parser.reset();
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Escapes a string for use in a TRAP key, by replacing special characters with
|
|
||||||
/// HTML entities.
|
|
||||||
fn escape_key<'a, S: Into<Cow<'a, str>>>(key: S) -> Cow<'a, str> {
|
|
||||||
fn needs_escaping(c: char) -> bool {
|
|
||||||
matches!(c, '&' | '{' | '}' | '"' | '@' | '#')
|
|
||||||
}
|
|
||||||
|
|
||||||
let key = key.into();
|
|
||||||
if key.contains(needs_escaping) {
|
|
||||||
let mut escaped = String::with_capacity(2 * key.len());
|
|
||||||
for c in key.chars() {
|
|
||||||
match c {
|
|
||||||
'&' => escaped.push_str("&"),
|
|
||||||
'{' => escaped.push_str("{"),
|
|
||||||
'}' => escaped.push_str("}"),
|
|
||||||
'"' => escaped.push_str("""),
|
|
||||||
'@' => escaped.push_str("@"),
|
|
||||||
'#' => escaped.push_str("#"),
|
|
||||||
_ => escaped.push(c),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Cow::Owned(escaped)
|
|
||||||
} else {
|
|
||||||
key
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Normalizes the path according the common CodeQL specification. Assumes that
|
/// Normalizes the path according the common CodeQL specification. Assumes that
|
||||||
/// `path` has already been canonicalized using `std::fs::canonicalize`.
|
/// `path` has already been canonicalized using `std::fs::canonicalize`.
|
||||||
fn normalize_path(path: &Path) -> String {
|
fn normalize_path(path: &Path) -> String {
|
||||||
@@ -267,34 +188,28 @@ fn normalize_path(path: &Path) -> String {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn full_id_for_file(path: &Path) -> String {
|
|
||||||
format!("{};sourcefile", escape_key(&normalize_path(path)))
|
|
||||||
}
|
|
||||||
|
|
||||||
fn full_id_for_folder(path: &Path) -> String {
|
|
||||||
format!("{};folder", escape_key(&normalize_path(path)))
|
|
||||||
}
|
|
||||||
|
|
||||||
struct ChildNode {
|
struct ChildNode {
|
||||||
field_name: Option<&'static str>,
|
field_name: Option<&'static str>,
|
||||||
label: Label,
|
label: trap::Label,
|
||||||
type_name: TypeName,
|
type_name: TypeName,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Visitor<'a> {
|
struct Visitor<'a> {
|
||||||
/// The file path of the source code (as string)
|
/// The file path of the source code (as string)
|
||||||
path: String,
|
path: &'a str,
|
||||||
/// The label to use whenever we need to refer to the `@file` entity of this
|
/// The label to use whenever we need to refer to the `@file` entity of this
|
||||||
/// source file.
|
/// source file.
|
||||||
file_label: Label,
|
file_label: trap::Label,
|
||||||
/// The source code as a UTF-8 byte array
|
/// The source code as a UTF-8 byte array
|
||||||
source: &'a [u8],
|
source: &'a [u8],
|
||||||
/// A TrapWriter to accumulate trap entries
|
/// A trap::Writer to accumulate trap entries
|
||||||
trap_writer: &'a mut TrapWriter,
|
trap_writer: &'a mut trap::Writer,
|
||||||
/// A counter for top-level child nodes
|
/// A counter for top-level child nodes
|
||||||
toplevel_child_counter: usize,
|
toplevel_child_counter: usize,
|
||||||
/// Language prefix
|
/// Language-specific name of the AST parent table
|
||||||
language_prefix: &'a str,
|
ast_node_parent_table_name: String,
|
||||||
|
/// Language-specific name of the tokeninfo table
|
||||||
|
tokeninfo_table_name: String,
|
||||||
/// A lookup table from type name to node types
|
/// A lookup table from type name to node types
|
||||||
schema: &'a NodeTypeMap,
|
schema: &'a NodeTypeMap,
|
||||||
/// A stack for gathering information from child nodes. Whenever a node is
|
/// A stack for gathering information from child nodes. Whenever a node is
|
||||||
@@ -303,39 +218,62 @@ struct Visitor<'a> {
|
|||||||
/// node the list containing the child data is popped from the stack and
|
/// node the list containing the child data is popped from the stack and
|
||||||
/// matched against the dbscheme for the node. If the expectations are met
|
/// matched against the dbscheme for the node. If the expectations are met
|
||||||
/// the corresponding row definitions are added to the trap_output.
|
/// the corresponding row definitions are added to the trap_output.
|
||||||
stack: Vec<(Label, usize, Vec<ChildNode>)>,
|
stack: Vec<(trap::Label, usize, Vec<ChildNode>)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Visitor<'_> {
|
impl<'a> Visitor<'a> {
|
||||||
|
fn new(
|
||||||
|
source: &'a [u8],
|
||||||
|
trap_writer: &'a mut trap::Writer,
|
||||||
|
path: &'a str,
|
||||||
|
file_label: trap::Label,
|
||||||
|
language_prefix: &str,
|
||||||
|
schema: &'a NodeTypeMap,
|
||||||
|
) -> Visitor<'a> {
|
||||||
|
Visitor {
|
||||||
|
path,
|
||||||
|
file_label,
|
||||||
|
source,
|
||||||
|
trap_writer,
|
||||||
|
toplevel_child_counter: 0,
|
||||||
|
ast_node_parent_table_name: format!("{}_ast_node_parent", language_prefix),
|
||||||
|
tokeninfo_table_name: format!("{}_tokeninfo", language_prefix),
|
||||||
|
schema,
|
||||||
|
stack: Vec::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn record_parse_error(
|
fn record_parse_error(
|
||||||
&mut self,
|
&mut self,
|
||||||
error_message: String,
|
error_message: String,
|
||||||
full_error_message: String,
|
full_error_message: String,
|
||||||
loc: Label,
|
loc: trap::Label,
|
||||||
) {
|
) {
|
||||||
error!("{}", full_error_message);
|
error!("{}", full_error_message);
|
||||||
let id = self.trap_writer.fresh_id();
|
let id = self.trap_writer.fresh_id();
|
||||||
self.trap_writer.add_tuple(
|
self.trap_writer.add_tuple(
|
||||||
"diagnostics",
|
"diagnostics",
|
||||||
vec![
|
vec![
|
||||||
Arg::Label(id),
|
trap::Arg::Label(id),
|
||||||
Arg::Int(40), // severity 40 = error
|
trap::Arg::Int(40), // severity 40 = error
|
||||||
Arg::String("parse_error".to_string()),
|
trap::Arg::String("parse_error".to_string()),
|
||||||
Arg::String(error_message),
|
trap::Arg::String(error_message),
|
||||||
Arg::String(full_error_message),
|
trap::Arg::String(full_error_message),
|
||||||
Arg::Label(loc),
|
trap::Arg::Label(loc),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn record_parse_error_for_node(
|
fn record_parse_error_for_node(&mut self, error_message: String, node: &Node) {
|
||||||
&mut self,
|
let full_error_message = format!(
|
||||||
error_message: String,
|
"{}:{}: {}",
|
||||||
full_error_message: String,
|
&self.path,
|
||||||
node: Node,
|
node.start_position().row + 1,
|
||||||
) {
|
&error_message
|
||||||
|
);
|
||||||
let (start_line, start_column, end_line, end_column) = location_for(self.source, node);
|
let (start_line, start_column, end_line, end_column) = location_for(self.source, node);
|
||||||
let loc = self.trap_writer.location(
|
let loc = location(
|
||||||
|
self.trap_writer,
|
||||||
self.file_label,
|
self.file_label,
|
||||||
start_line,
|
start_line,
|
||||||
start_column,
|
start_column,
|
||||||
@@ -345,20 +283,14 @@ impl Visitor<'_> {
|
|||||||
self.record_parse_error(error_message, full_error_message, loc);
|
self.record_parse_error(error_message, full_error_message, loc);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn enter_node(&mut self, node: Node) -> bool {
|
fn enter_node(&mut self, node: &Node) -> bool {
|
||||||
if node.is_error() || node.is_missing() {
|
if node.is_error() || node.is_missing() {
|
||||||
let error_message = if node.is_missing() {
|
let error_message = if node.is_missing() {
|
||||||
format!("parse error: expecting '{}'", node.kind())
|
format!("parse error: expecting '{}'", node.kind())
|
||||||
} else {
|
} else {
|
||||||
"parse error".to_string()
|
"parse error".to_string()
|
||||||
};
|
};
|
||||||
let full_error_message = format!(
|
self.record_parse_error_for_node(error_message, node);
|
||||||
"{}:{}: {}",
|
|
||||||
&self.path,
|
|
||||||
node.start_position().row + 1,
|
|
||||||
error_message
|
|
||||||
);
|
|
||||||
self.record_parse_error_for_node(error_message, full_error_message, node);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -368,13 +300,14 @@ impl Visitor<'_> {
|
|||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
fn leave_node(&mut self, field_name: Option<&'static str>, node: Node) {
|
fn leave_node(&mut self, field_name: Option<&'static str>, node: &Node) {
|
||||||
if node.is_error() || node.is_missing() {
|
if node.is_error() || node.is_missing() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let (id, _, child_nodes) = self.stack.pop().expect("Vistor: empty stack");
|
let (id, _, child_nodes) = self.stack.pop().expect("Vistor: empty stack");
|
||||||
let (start_line, start_column, end_line, end_column) = location_for(self.source, node);
|
let (start_line, start_column, end_line, end_column) = location_for(self.source, node);
|
||||||
let loc = self.trap_writer.location(
|
let loc = location(
|
||||||
|
self.trap_writer,
|
||||||
self.file_label,
|
self.file_label,
|
||||||
start_line,
|
start_line,
|
||||||
start_column,
|
start_column,
|
||||||
@@ -402,20 +335,20 @@ impl Visitor<'_> {
|
|||||||
match &table.kind {
|
match &table.kind {
|
||||||
EntryKind::Token { kind_id, .. } => {
|
EntryKind::Token { kind_id, .. } => {
|
||||||
self.trap_writer.add_tuple(
|
self.trap_writer.add_tuple(
|
||||||
&format!("{}_ast_node_parent", self.language_prefix),
|
&self.ast_node_parent_table_name,
|
||||||
vec![
|
vec![
|
||||||
Arg::Label(id),
|
trap::Arg::Label(id),
|
||||||
Arg::Label(parent_id),
|
trap::Arg::Label(parent_id),
|
||||||
Arg::Int(parent_index),
|
trap::Arg::Int(parent_index),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
self.trap_writer.add_tuple(
|
self.trap_writer.add_tuple(
|
||||||
&format!("{}_tokeninfo", self.language_prefix),
|
&self.tokeninfo_table_name,
|
||||||
vec![
|
vec![
|
||||||
Arg::Label(id),
|
trap::Arg::Label(id),
|
||||||
Arg::Int(*kind_id),
|
trap::Arg::Int(*kind_id),
|
||||||
sliced_source_arg(self.source, node),
|
sliced_source_arg(self.source, node),
|
||||||
Arg::Label(loc),
|
trap::Arg::Label(loc),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -423,18 +356,18 @@ impl Visitor<'_> {
|
|||||||
fields,
|
fields,
|
||||||
name: table_name,
|
name: table_name,
|
||||||
} => {
|
} => {
|
||||||
if let Some(args) = self.complex_node(&node, fields, &child_nodes, id) {
|
if let Some(args) = self.complex_node(node, fields, &child_nodes, id) {
|
||||||
self.trap_writer.add_tuple(
|
self.trap_writer.add_tuple(
|
||||||
&format!("{}_ast_node_parent", self.language_prefix),
|
&self.ast_node_parent_table_name,
|
||||||
vec![
|
vec![
|
||||||
Arg::Label(id),
|
trap::Arg::Label(id),
|
||||||
Arg::Label(parent_id),
|
trap::Arg::Label(parent_id),
|
||||||
Arg::Int(parent_index),
|
trap::Arg::Int(parent_index),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
let mut all_args = vec![Arg::Label(id)];
|
let mut all_args = vec![trap::Arg::Label(id)];
|
||||||
all_args.extend(args);
|
all_args.extend(args);
|
||||||
all_args.push(Arg::Label(loc));
|
all_args.push(trap::Arg::Label(loc));
|
||||||
self.trap_writer.add_tuple(table_name, all_args);
|
self.trap_writer.add_tuple(table_name, all_args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -472,9 +405,9 @@ impl Visitor<'_> {
|
|||||||
node: &Node,
|
node: &Node,
|
||||||
fields: &[Field],
|
fields: &[Field],
|
||||||
child_nodes: &[ChildNode],
|
child_nodes: &[ChildNode],
|
||||||
parent_id: Label,
|
parent_id: trap::Label,
|
||||||
) -> Option<Vec<Arg>> {
|
) -> Option<Vec<trap::Arg>> {
|
||||||
let mut map: Map<&Option<String>, (&Field, Vec<Arg>)> = Map::new();
|
let mut map: IndexMap<&Option<String>, (&Field, Vec<trap::Arg>)> = IndexMap::new();
|
||||||
for field in fields {
|
for field in fields {
|
||||||
map.insert(&field.name, (field, Vec::new()));
|
map.insert(&field.name, (field, Vec::new()));
|
||||||
}
|
}
|
||||||
@@ -482,46 +415,47 @@ impl Visitor<'_> {
|
|||||||
if let Some((field, values)) = map.get_mut(&child_node.field_name.map(|x| x.to_owned()))
|
if let Some((field, values)) = map.get_mut(&child_node.field_name.map(|x| x.to_owned()))
|
||||||
{
|
{
|
||||||
//TODO: handle error and missing nodes
|
//TODO: handle error and missing nodes
|
||||||
if self.type_matches(&child_node.type_name, &field.type_info) {
|
if field.type_info.valid_types.contains(&child_node.type_name) {
|
||||||
if let node_types::FieldTypeInfo::ReservedWordInt(int_mapping) =
|
if let node_types::FieldTypeKind::ReservedWordInt(int_mapping) =
|
||||||
&field.type_info
|
&field.type_info.kind
|
||||||
{
|
{
|
||||||
// We can safely unwrap because type_matches checks the key is in the map.
|
match int_mapping.get(&child_node.type_name.kind) {
|
||||||
let (int_value, _) = int_mapping.get(&child_node.type_name.kind).unwrap();
|
Some((int_value, _)) => values.push(trap::Arg::Int(*int_value)),
|
||||||
values.push(Arg::Int(*int_value));
|
None => self.record_parse_error_for_node(
|
||||||
|
format!(
|
||||||
|
"could not map field {}::{} with type {:?} to an integer value",
|
||||||
|
node.kind(),
|
||||||
|
child_node.field_name.unwrap_or("child"),
|
||||||
|
child_node.type_name
|
||||||
|
),
|
||||||
|
node,
|
||||||
|
),
|
||||||
|
};
|
||||||
} else {
|
} else {
|
||||||
values.push(Arg::Label(child_node.label));
|
values.push(trap::Arg::Label(child_node.label));
|
||||||
}
|
}
|
||||||
} else if field.name.is_some() {
|
} else if field.name.is_some() {
|
||||||
let error_message = format!(
|
self.record_parse_error_for_node(
|
||||||
"type mismatch for field {}::{} with type {:?} != {:?}",
|
format!(
|
||||||
node.kind(),
|
"type mismatch for field {}::{} with type {:?} != {:?}",
|
||||||
child_node.field_name.unwrap_or("child"),
|
node.kind(),
|
||||||
child_node.type_name,
|
child_node.field_name.unwrap_or("child"),
|
||||||
field.type_info
|
child_node.type_name,
|
||||||
|
field.type_info
|
||||||
|
),
|
||||||
|
node,
|
||||||
);
|
);
|
||||||
let full_error_message = format!(
|
|
||||||
"{}:{}: {}",
|
|
||||||
&self.path,
|
|
||||||
node.start_position().row + 1,
|
|
||||||
error_message
|
|
||||||
);
|
|
||||||
self.record_parse_error_for_node(error_message, full_error_message, *node);
|
|
||||||
}
|
}
|
||||||
} else if child_node.field_name.is_some() || child_node.type_name.named {
|
} else if child_node.field_name.is_some() || child_node.type_name.named {
|
||||||
let error_message = format!(
|
self.record_parse_error_for_node(
|
||||||
"value for unknown field: {}::{} and type {:?}",
|
format!(
|
||||||
node.kind(),
|
"value for unknown field: {}::{} and type {:?}",
|
||||||
&child_node.field_name.unwrap_or("child"),
|
node.kind(),
|
||||||
&child_node.type_name
|
&child_node.field_name.unwrap_or("child"),
|
||||||
|
&child_node.type_name
|
||||||
|
),
|
||||||
|
node,
|
||||||
);
|
);
|
||||||
let full_error_message = format!(
|
|
||||||
"{}:{}: {}",
|
|
||||||
&self.path,
|
|
||||||
node.start_position().row + 1,
|
|
||||||
error_message
|
|
||||||
);
|
|
||||||
self.record_parse_error_for_node(error_message, full_error_message, *node);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let mut args = Vec::new();
|
let mut args = Vec::new();
|
||||||
@@ -534,23 +468,19 @@ impl Visitor<'_> {
|
|||||||
args.push(child_values.first().unwrap().clone());
|
args.push(child_values.first().unwrap().clone());
|
||||||
} else {
|
} else {
|
||||||
is_valid = false;
|
is_valid = false;
|
||||||
let error_message = format!(
|
self.record_parse_error_for_node(
|
||||||
"{} for field: {}::{}",
|
format!(
|
||||||
if child_values.is_empty() {
|
"{} for field: {}::{}",
|
||||||
"missing value"
|
if child_values.is_empty() {
|
||||||
} else {
|
"missing value"
|
||||||
"too many values"
|
} else {
|
||||||
},
|
"too many values"
|
||||||
node.kind(),
|
},
|
||||||
column_name
|
node.kind(),
|
||||||
|
column_name
|
||||||
|
),
|
||||||
|
node,
|
||||||
);
|
);
|
||||||
let full_error_message = format!(
|
|
||||||
"{}:{}: {}",
|
|
||||||
&self.path,
|
|
||||||
node.start_position().row + 1,
|
|
||||||
error_message
|
|
||||||
);
|
|
||||||
self.record_parse_error_for_node(error_message, full_error_message, *node);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Storage::Table {
|
Storage::Table {
|
||||||
@@ -569,9 +499,9 @@ impl Visitor<'_> {
|
|||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
let mut args = vec![Arg::Label(parent_id)];
|
let mut args = vec![trap::Arg::Label(parent_id)];
|
||||||
if *has_index {
|
if *has_index {
|
||||||
args.push(Arg::Int(index))
|
args.push(trap::Arg::Int(index))
|
||||||
}
|
}
|
||||||
args.push(child_value.clone());
|
args.push(child_value.clone());
|
||||||
self.trap_writer.add_tuple(table_name, args);
|
self.trap_writer.add_tuple(table_name, args);
|
||||||
@@ -585,55 +515,18 @@ impl Visitor<'_> {
|
|||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn type_matches(&self, tp: &TypeName, type_info: &node_types::FieldTypeInfo) -> bool {
|
|
||||||
match type_info {
|
|
||||||
node_types::FieldTypeInfo::Single(single_type) => {
|
|
||||||
if tp == single_type {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if let EntryKind::Union { members } = &self.schema.get(single_type).unwrap().kind {
|
|
||||||
if self.type_matches_set(tp, members) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
node_types::FieldTypeInfo::Multiple { types, .. } => {
|
|
||||||
return self.type_matches_set(tp, types);
|
|
||||||
}
|
|
||||||
|
|
||||||
node_types::FieldTypeInfo::ReservedWordInt(int_mapping) => {
|
|
||||||
return !tp.named && int_mapping.contains_key(&tp.kind)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
false
|
|
||||||
}
|
|
||||||
|
|
||||||
fn type_matches_set(&self, tp: &TypeName, types: &Set<TypeName>) -> bool {
|
|
||||||
if types.contains(tp) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
for other in types.iter() {
|
|
||||||
if let EntryKind::Union { members } = &self.schema.get(other).unwrap().kind {
|
|
||||||
if self.type_matches_set(tp, members) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Emit a slice of a source file as an Arg.
|
// Emit a slice of a source file as a trap::Arg.
|
||||||
fn sliced_source_arg(source: &[u8], n: Node) -> Arg {
|
fn sliced_source_arg(source: &[u8], n: &Node) -> trap::Arg {
|
||||||
let range = n.byte_range();
|
let range = n.byte_range();
|
||||||
Arg::String(String::from_utf8_lossy(&source[range.start..range.end]).into_owned())
|
trap::Arg::String(String::from_utf8_lossy(&source[range.start..range.end]).into_owned())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Emit a pair of `TrapEntry`s for the provided node, appropriately calibrated.
|
// Emit a pair of `TrapEntry`s for the provided node, appropriately calibrated.
|
||||||
// The first is the location and label definition, and the second is the
|
// The first is the location and label definition, and the second is the
|
||||||
// 'Located' entry.
|
// 'Located' entry.
|
||||||
fn location_for(source: &[u8], n: Node) -> (usize, usize, usize, usize) {
|
fn location_for(source: &[u8], n: &Node) -> (usize, usize, usize, usize) {
|
||||||
// Tree-sitter row, column values are 0-based while CodeQL starts
|
// Tree-sitter row, column values are 0-based while CodeQL starts
|
||||||
// counting at 1. In addition Tree-sitter's row and column for the
|
// counting at 1. In addition Tree-sitter's row and column for the
|
||||||
// end position are exclusive while CodeQL's end positions are inclusive.
|
// end position are exclusive while CodeQL's end positions are inclusive.
|
||||||
@@ -680,16 +573,16 @@ fn location_for(source: &[u8], n: Node) -> (usize, usize, usize, usize) {
|
|||||||
|
|
||||||
fn traverse(tree: &Tree, visitor: &mut Visitor) {
|
fn traverse(tree: &Tree, visitor: &mut Visitor) {
|
||||||
let cursor = &mut tree.walk();
|
let cursor = &mut tree.walk();
|
||||||
visitor.enter_node(cursor.node());
|
visitor.enter_node(&cursor.node());
|
||||||
let mut recurse = true;
|
let mut recurse = true;
|
||||||
loop {
|
loop {
|
||||||
if recurse && cursor.goto_first_child() {
|
if recurse && cursor.goto_first_child() {
|
||||||
recurse = visitor.enter_node(cursor.node());
|
recurse = visitor.enter_node(&cursor.node());
|
||||||
} else {
|
} else {
|
||||||
visitor.leave_node(cursor.field_name(), cursor.node());
|
visitor.leave_node(cursor.field_name(), &cursor.node());
|
||||||
|
|
||||||
if cursor.goto_next_sibling() {
|
if cursor.goto_next_sibling() {
|
||||||
recurse = visitor.enter_node(cursor.node());
|
recurse = visitor.enter_node(&cursor.node());
|
||||||
} else if cursor.goto_parent() {
|
} else if cursor.goto_parent() {
|
||||||
recurse = false;
|
recurse = false;
|
||||||
} else {
|
} else {
|
||||||
@@ -699,59 +592,6 @@ fn traverse(tree: &Tree, visitor: &mut Visitor) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Program(Vec<TrapEntry>);
|
|
||||||
|
|
||||||
impl fmt::Display for Program {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
||||||
let mut text = String::new();
|
|
||||||
for trap_entry in &self.0 {
|
|
||||||
text.push_str(&format!("{}\n", trap_entry));
|
|
||||||
}
|
|
||||||
write!(f, "{}", text)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
enum TrapEntry {
|
|
||||||
/// Maps the label to a fresh id, e.g. `#123=*`.
|
|
||||||
FreshId(Label),
|
|
||||||
/// Maps the label to a key, e.g. `#7=@"foo"`.
|
|
||||||
MapLabelToKey(Label, String),
|
|
||||||
/// foo_bar(arg*)
|
|
||||||
GenericTuple(String, Vec<Arg>),
|
|
||||||
Comment(String),
|
|
||||||
}
|
|
||||||
impl fmt::Display for TrapEntry {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
||||||
match self {
|
|
||||||
TrapEntry::FreshId(label) => write!(f, "{}=*", label),
|
|
||||||
TrapEntry::MapLabelToKey(label, key) => {
|
|
||||||
write!(f, "{}=@\"{}\"", label, key.replace("\"", "\"\""))
|
|
||||||
}
|
|
||||||
TrapEntry::GenericTuple(name, args) => {
|
|
||||||
write!(f, "{}(", name)?;
|
|
||||||
for (index, arg) in args.iter().enumerate() {
|
|
||||||
if index > 0 {
|
|
||||||
write!(f, ",")?;
|
|
||||||
}
|
|
||||||
write!(f, "{}", arg)?;
|
|
||||||
}
|
|
||||||
write!(f, ")")
|
|
||||||
}
|
|
||||||
TrapEntry::Comment(line) => write!(f, "// {}", line),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone)]
|
|
||||||
// Identifiers of the form #0, #1...
|
|
||||||
struct Label(u32);
|
|
||||||
|
|
||||||
impl fmt::Display for Label {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
||||||
write!(f, "#{:x}", self.0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Numeric indices.
|
// Numeric indices.
|
||||||
#[derive(Debug, Copy, Clone)]
|
#[derive(Debug, Copy, Clone)]
|
||||||
struct Index(usize);
|
struct Index(usize);
|
||||||
@@ -761,69 +601,3 @@ impl fmt::Display for Index {
|
|||||||
write!(f, "{}", self.0)
|
write!(f, "{}", self.0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Some untyped argument to a TrapEntry.
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
enum Arg {
|
|
||||||
Label(Label),
|
|
||||||
Int(usize),
|
|
||||||
String(String),
|
|
||||||
}
|
|
||||||
|
|
||||||
const MAX_STRLEN: usize = 1048576;
|
|
||||||
|
|
||||||
impl fmt::Display for Arg {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
||||||
match self {
|
|
||||||
Arg::Label(x) => write!(f, "{}", x),
|
|
||||||
Arg::Int(x) => write!(f, "{}", x),
|
|
||||||
Arg::String(x) => write!(
|
|
||||||
f,
|
|
||||||
"\"{}\"",
|
|
||||||
limit_string(x, MAX_STRLEN).replace("\"", "\"\"")
|
|
||||||
),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Limit the length (in bytes) of a string. If the string's length in bytes is
|
|
||||||
/// less than or equal to the limit then the entire string is returned. Otherwise
|
|
||||||
/// the string is sliced at the provided limit. If there is a multi-byte character
|
|
||||||
/// at the limit then the returned slice will be slightly shorter than the limit to
|
|
||||||
/// avoid splitting that multi-byte character.
|
|
||||||
fn limit_string(string: &str, max_size: usize) -> &str {
|
|
||||||
if string.len() <= max_size {
|
|
||||||
return string;
|
|
||||||
}
|
|
||||||
let p = string.as_bytes();
|
|
||||||
let mut index = max_size;
|
|
||||||
// We want to clip the string at [max_size]; however, the character at that position
|
|
||||||
// may span several bytes. We need to find the first byte of the character. In UTF-8
|
|
||||||
// encoded data any byte that matches the bit pattern 10XXXXXX is not a start byte.
|
|
||||||
// Therefore we decrement the index as long as there are bytes matching this pattern.
|
|
||||||
// This ensures we cut the string at the border between one character and another.
|
|
||||||
while index > 0 && (p[index] & 0b11000000) == 0b10000000 {
|
|
||||||
index -= 1;
|
|
||||||
}
|
|
||||||
&string[0..index]
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn limit_string_test() {
|
|
||||||
assert_eq!("hello", limit_string(&"hello world".to_owned(), 5));
|
|
||||||
assert_eq!("hi ☹", limit_string(&"hi ☹☹".to_owned(), 6));
|
|
||||||
assert_eq!("hi ", limit_string(&"hi ☹☹".to_owned(), 5));
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn escape_key_test() {
|
|
||||||
assert_eq!("foo!", escape_key("foo!"));
|
|
||||||
assert_eq!("foo{}", escape_key("foo{}"));
|
|
||||||
assert_eq!("{}", escape_key("{}"));
|
|
||||||
assert_eq!("", escape_key(""));
|
|
||||||
assert_eq!("/path/to/foo.rb", escape_key("/path/to/foo.rb"));
|
|
||||||
assert_eq!(
|
|
||||||
"/path/to/foo&{}"@#.rb",
|
|
||||||
escape_key("/path/to/foo&{}\"@#.rb")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,51 +1,15 @@
|
|||||||
mod extractor;
|
mod extractor;
|
||||||
|
mod trap;
|
||||||
|
|
||||||
extern crate num_cpus;
|
extern crate num_cpus;
|
||||||
|
|
||||||
use clap::arg;
|
use clap::arg;
|
||||||
use flate2::write::GzEncoder;
|
|
||||||
use rayon::prelude::*;
|
use rayon::prelude::*;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::io::{BufRead, BufWriter};
|
use std::io::BufRead;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use tree_sitter::{Language, Parser, Range};
|
use tree_sitter::{Language, Parser, Range};
|
||||||
|
|
||||||
enum TrapCompression {
|
|
||||||
None,
|
|
||||||
Gzip,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TrapCompression {
|
|
||||||
fn from_env() -> TrapCompression {
|
|
||||||
match std::env::var("CODEQL_RUBY_TRAP_COMPRESSION") {
|
|
||||||
Ok(method) => match TrapCompression::from_string(&method) {
|
|
||||||
Some(c) => c,
|
|
||||||
None => {
|
|
||||||
tracing::error!("Unknown compression method '{}'; using gzip.", &method);
|
|
||||||
TrapCompression::Gzip
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Default compression method if the env var isn't set:
|
|
||||||
Err(_) => TrapCompression::Gzip,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn from_string(s: &str) -> Option<TrapCompression> {
|
|
||||||
match s.to_lowercase().as_ref() {
|
|
||||||
"none" => Some(TrapCompression::None),
|
|
||||||
"gzip" => Some(TrapCompression::Gzip),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn extension(&self) -> &str {
|
|
||||||
match self {
|
|
||||||
TrapCompression::None => "trap",
|
|
||||||
TrapCompression::Gzip => "trap.gz",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the number of threads the extractor should use, by reading the
|
* Gets the number of threads the extractor should use, by reading the
|
||||||
* CODEQL_THREADS environment variable and using it as described in the
|
* CODEQL_THREADS environment variable and using it as described in the
|
||||||
@@ -118,7 +82,7 @@ fn main() -> std::io::Result<()> {
|
|||||||
.value_of("output-dir")
|
.value_of("output-dir")
|
||||||
.expect("missing --output-dir");
|
.expect("missing --output-dir");
|
||||||
let trap_dir = PathBuf::from(trap_dir);
|
let trap_dir = PathBuf::from(trap_dir);
|
||||||
let trap_compression = TrapCompression::from_env();
|
let trap_compression = trap::Compression::from_env("CODEQL_RUBY_TRAP_COMPRESSION");
|
||||||
|
|
||||||
let file_list = matches.value_of("file-list").expect("missing --file-list");
|
let file_list = matches.value_of("file-list").expect("missing --file-list");
|
||||||
let file_list = fs::File::open(file_list)?;
|
let file_list = fs::File::open(file_list)?;
|
||||||
@@ -141,7 +105,7 @@ fn main() -> std::io::Result<()> {
|
|||||||
let src_archive_file = path_for(&src_archive_dir, &path, "");
|
let src_archive_file = path_for(&src_archive_dir, &path, "");
|
||||||
let mut source = std::fs::read(&path)?;
|
let mut source = std::fs::read(&path)?;
|
||||||
let code_ranges;
|
let code_ranges;
|
||||||
let mut trap_writer = extractor::new_trap_writer();
|
let mut trap_writer = trap::Writer::new();
|
||||||
if path.extension().map_or(false, |x| x == "erb") {
|
if path.extension().map_or(false, |x| x == "erb") {
|
||||||
tracing::info!("scanning: {}", path.display());
|
tracing::info!("scanning: {}", path.display());
|
||||||
extractor::extract(
|
extractor::extract(
|
||||||
@@ -186,28 +150,20 @@ fn main() -> std::io::Result<()> {
|
|||||||
.expect("failed to extract files");
|
.expect("failed to extract files");
|
||||||
|
|
||||||
let path = PathBuf::from("extras");
|
let path = PathBuf::from("extras");
|
||||||
let mut trap_writer = extractor::new_trap_writer();
|
let mut trap_writer = trap::Writer::new();
|
||||||
trap_writer.populate_empty_location();
|
extractor::populate_empty_location(&mut trap_writer);
|
||||||
write_trap(&trap_dir, path, trap_writer, &trap_compression)
|
write_trap(&trap_dir, path, trap_writer, &trap_compression)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn write_trap(
|
fn write_trap(
|
||||||
trap_dir: &Path,
|
trap_dir: &Path,
|
||||||
path: PathBuf,
|
path: PathBuf,
|
||||||
trap_writer: extractor::TrapWriter,
|
trap_writer: trap::Writer,
|
||||||
trap_compression: &TrapCompression,
|
trap_compression: &trap::Compression,
|
||||||
) -> std::io::Result<()> {
|
) -> std::io::Result<()> {
|
||||||
let trap_file = path_for(trap_dir, &path, trap_compression.extension());
|
let trap_file = path_for(trap_dir, &path, trap_compression.extension());
|
||||||
std::fs::create_dir_all(&trap_file.parent().unwrap())?;
|
std::fs::create_dir_all(&trap_file.parent().unwrap())?;
|
||||||
let trap_file = std::fs::File::create(&trap_file)?;
|
trap_writer.write_to_file(&trap_file, trap_compression)
|
||||||
let mut trap_file = BufWriter::new(trap_file);
|
|
||||||
match trap_compression {
|
|
||||||
TrapCompression::None => trap_writer.output(&mut trap_file),
|
|
||||||
TrapCompression::Gzip => {
|
|
||||||
let mut compressed_writer = GzEncoder::new(trap_file, flate2::Compression::fast());
|
|
||||||
trap_writer.output(&mut compressed_writer)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn scan_erb(
|
fn scan_erb(
|
||||||
|
|||||||
247
ruby/extractor/src/trap.rs
Normal file
247
ruby/extractor/src/trap.rs
Normal file
@@ -0,0 +1,247 @@
|
|||||||
|
use std::borrow::Cow;
|
||||||
|
use std::fmt;
|
||||||
|
use std::io::BufWriter;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
use flate2::write::GzEncoder;
|
||||||
|
use indexmap::IndexMap;
|
||||||
|
|
||||||
|
pub struct Writer {
|
||||||
|
/// Labels that should be assigned fresh ids, e.g. `#123=*`.
|
||||||
|
fresh_ids: Vec<Label>,
|
||||||
|
|
||||||
|
/// Labels that should be assigned trap keys, e.g. `#7=@"foo"`.
|
||||||
|
global_keys: IndexMap<String, Label>,
|
||||||
|
|
||||||
|
/// Database rows to emit. Each key is the tuple name, each value is a list.
|
||||||
|
/// Each member of *that* list represents an instance of that tuple,
|
||||||
|
/// containing a list of the arguments/column values.
|
||||||
|
tuples: IndexMap<String, Vec<Vec<Arg>>>,
|
||||||
|
|
||||||
|
/// A counter for generating fresh labels
|
||||||
|
counter: u32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Writer {
|
||||||
|
pub fn new() -> Writer {
|
||||||
|
Writer {
|
||||||
|
fresh_ids: Vec::new(),
|
||||||
|
tuples: IndexMap::new(),
|
||||||
|
global_keys: IndexMap::new(),
|
||||||
|
counter: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Gets a label that will hold the unique ID of the passed string at import time.
|
||||||
|
/// This can be used for incrementally importable TRAP files -- use globally unique
|
||||||
|
/// strings to compute a unique ID for table tuples.
|
||||||
|
///
|
||||||
|
/// Note: You probably want to make sure that the key strings that you use are disjoint
|
||||||
|
/// for disjoint column types; the standard way of doing this is to prefix (or append)
|
||||||
|
/// the column type name to the ID. Thus, you might identify methods in Java by the
|
||||||
|
/// full ID "methods_com.method.package.DeclaringClass.method(argumentList)".
|
||||||
|
pub fn fresh_id(&mut self) -> Label {
|
||||||
|
let label = Label(self.counter);
|
||||||
|
self.counter += 1;
|
||||||
|
self.fresh_ids.push(label);
|
||||||
|
label
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn global_id(&mut self, key: String) -> (Label, bool) {
|
||||||
|
if let Some(label) = self.global_keys.get(&key) {
|
||||||
|
return (*label, false);
|
||||||
|
}
|
||||||
|
let label = Label(self.counter);
|
||||||
|
self.counter += 1;
|
||||||
|
self.global_keys.insert(key, label);
|
||||||
|
(label, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn add_tuple(&mut self, table_name: &str, args: Vec<Arg>) {
|
||||||
|
self.tuples
|
||||||
|
.entry(table_name.to_owned())
|
||||||
|
.or_insert_with(Vec::new)
|
||||||
|
.push(args);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn write<T: std::io::Write>(&self, dest: &mut T) -> std::io::Result<()> {
|
||||||
|
for label in &self.fresh_ids {
|
||||||
|
writeln!(dest, "{}=*", label)?;
|
||||||
|
}
|
||||||
|
for (key, label) in &self.global_keys {
|
||||||
|
writeln!(dest, "{}=@\"{}\"", label, key.replace("\"", "\"\""))?;
|
||||||
|
}
|
||||||
|
for (name, instances) in &self.tuples {
|
||||||
|
for instance in instances {
|
||||||
|
write!(dest, "{}(", name)?;
|
||||||
|
for (index, arg) in instance.iter().enumerate() {
|
||||||
|
if index > 0 {
|
||||||
|
write!(dest, ",")?;
|
||||||
|
}
|
||||||
|
write!(dest, "{}", arg)?;
|
||||||
|
}
|
||||||
|
writeln!(dest, ")")?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn write_to_file(&self, path: &Path, compression: &Compression) -> std::io::Result<()> {
|
||||||
|
let trap_file = std::fs::File::create(path)?;
|
||||||
|
let mut trap_file = BufWriter::new(trap_file);
|
||||||
|
match compression {
|
||||||
|
Compression::None => self.write(&mut trap_file),
|
||||||
|
Compression::Gzip => {
|
||||||
|
let mut compressed_writer = GzEncoder::new(trap_file, flate2::Compression::fast());
|
||||||
|
self.write(&mut compressed_writer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone)]
|
||||||
|
// Identifiers of the form #0, #1...
|
||||||
|
pub struct Label(u32);
|
||||||
|
|
||||||
|
impl fmt::Display for Label {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
|
write!(f, "#{:x}", self.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Some untyped argument to a TrapEntry.
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub enum Arg {
|
||||||
|
Label(Label),
|
||||||
|
Int(usize),
|
||||||
|
String(String),
|
||||||
|
}
|
||||||
|
|
||||||
|
const MAX_STRLEN: usize = 1048576;
|
||||||
|
|
||||||
|
impl fmt::Display for Arg {
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
|
match self {
|
||||||
|
Arg::Label(x) => write!(f, "{}", x),
|
||||||
|
Arg::Int(x) => write!(f, "{}", x),
|
||||||
|
Arg::String(x) => write!(
|
||||||
|
f,
|
||||||
|
"\"{}\"",
|
||||||
|
limit_string(x, MAX_STRLEN).replace("\"", "\"\"")
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn full_id_for_file(normalized_path: &str) -> String {
|
||||||
|
format!("{};sourcefile", escape_key(normalized_path))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn full_id_for_folder(normalized_path: &str) -> String {
|
||||||
|
format!("{};folder", escape_key(normalized_path))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Escapes a string for use in a TRAP key, by replacing special characters with
|
||||||
|
/// HTML entities.
|
||||||
|
fn escape_key<'a, S: Into<Cow<'a, str>>>(key: S) -> Cow<'a, str> {
|
||||||
|
fn needs_escaping(c: char) -> bool {
|
||||||
|
matches!(c, '&' | '{' | '}' | '"' | '@' | '#')
|
||||||
|
}
|
||||||
|
|
||||||
|
let key = key.into();
|
||||||
|
if key.contains(needs_escaping) {
|
||||||
|
let mut escaped = String::with_capacity(2 * key.len());
|
||||||
|
for c in key.chars() {
|
||||||
|
match c {
|
||||||
|
'&' => escaped.push_str("&"),
|
||||||
|
'{' => escaped.push_str("{"),
|
||||||
|
'}' => escaped.push_str("}"),
|
||||||
|
'"' => escaped.push_str("""),
|
||||||
|
'@' => escaped.push_str("@"),
|
||||||
|
'#' => escaped.push_str("#"),
|
||||||
|
_ => escaped.push(c),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Cow::Owned(escaped)
|
||||||
|
} else {
|
||||||
|
key
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Limit the length (in bytes) of a string. If the string's length in bytes is
|
||||||
|
/// less than or equal to the limit then the entire string is returned. Otherwise
|
||||||
|
/// the string is sliced at the provided limit. If there is a multi-byte character
|
||||||
|
/// at the limit then the returned slice will be slightly shorter than the limit to
|
||||||
|
/// avoid splitting that multi-byte character.
|
||||||
|
fn limit_string(string: &str, max_size: usize) -> &str {
|
||||||
|
if string.len() <= max_size {
|
||||||
|
return string;
|
||||||
|
}
|
||||||
|
let p = string.as_bytes();
|
||||||
|
let mut index = max_size;
|
||||||
|
// We want to clip the string at [max_size]; however, the character at that position
|
||||||
|
// may span several bytes. We need to find the first byte of the character. In UTF-8
|
||||||
|
// encoded data any byte that matches the bit pattern 10XXXXXX is not a start byte.
|
||||||
|
// Therefore we decrement the index as long as there are bytes matching this pattern.
|
||||||
|
// This ensures we cut the string at the border between one character and another.
|
||||||
|
while index > 0 && (p[index] & 0b11000000) == 0b10000000 {
|
||||||
|
index -= 1;
|
||||||
|
}
|
||||||
|
&string[0..index]
|
||||||
|
}
|
||||||
|
|
||||||
|
pub enum Compression {
|
||||||
|
None,
|
||||||
|
Gzip,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Compression {
|
||||||
|
pub fn from_env(var_name: &str) -> Compression {
|
||||||
|
match std::env::var(var_name) {
|
||||||
|
Ok(method) => match Compression::from_string(&method) {
|
||||||
|
Some(c) => c,
|
||||||
|
None => {
|
||||||
|
tracing::error!("Unknown compression method '{}'; using gzip.", &method);
|
||||||
|
Compression::Gzip
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Default compression method if the env var isn't set:
|
||||||
|
Err(_) => Compression::Gzip,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn from_string(s: &str) -> Option<Compression> {
|
||||||
|
match s.to_lowercase().as_ref() {
|
||||||
|
"none" => Some(Compression::None),
|
||||||
|
"gzip" => Some(Compression::Gzip),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn extension(&self) -> &str {
|
||||||
|
match self {
|
||||||
|
Compression::None => "trap",
|
||||||
|
Compression::Gzip => "trap.gz",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn limit_string_test() {
|
||||||
|
assert_eq!("hello", limit_string(&"hello world".to_owned(), 5));
|
||||||
|
assert_eq!("hi ☹", limit_string(&"hi ☹☹".to_owned(), 6));
|
||||||
|
assert_eq!("hi ", limit_string(&"hi ☹☹".to_owned(), 5));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn escape_key_test() {
|
||||||
|
assert_eq!("foo!", escape_key("foo!"));
|
||||||
|
assert_eq!("foo{}", escape_key("foo{}"));
|
||||||
|
assert_eq!("{}", escape_key("{}"));
|
||||||
|
assert_eq!("", escape_key(""));
|
||||||
|
assert_eq!("/path/to/foo.rb", escape_key("/path/to/foo.rb"));
|
||||||
|
assert_eq!(
|
||||||
|
"/path/to/foo&{}"@#.rb",
|
||||||
|
escape_key("/path/to/foo&{}\"@#.rb")
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -20,8 +20,8 @@ fn make_field_type<'a>(
|
|||||||
field: &'a node_types::Field,
|
field: &'a node_types::Field,
|
||||||
nodes: &'a node_types::NodeTypeMap,
|
nodes: &'a node_types::NodeTypeMap,
|
||||||
) -> (ql::Type<'a>, Option<dbscheme::Entry<'a>>) {
|
) -> (ql::Type<'a>, Option<dbscheme::Entry<'a>>) {
|
||||||
match &field.type_info {
|
match &field.type_info.kind {
|
||||||
node_types::FieldTypeInfo::Multiple {
|
node_types::FieldTypeKind::Multiple {
|
||||||
types,
|
types,
|
||||||
dbscheme_union,
|
dbscheme_union,
|
||||||
ql_class: _,
|
ql_class: _,
|
||||||
@@ -40,11 +40,11 @@ fn make_field_type<'a>(
|
|||||||
})),
|
})),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
node_types::FieldTypeInfo::Single(t) => {
|
node_types::FieldTypeKind::Single(t) => {
|
||||||
let dbscheme_name = &nodes.get(t).unwrap().dbscheme_name;
|
let dbscheme_name = &nodes.get(t).unwrap().dbscheme_name;
|
||||||
(ql::Type::At(dbscheme_name), None)
|
(ql::Type::At(dbscheme_name), None)
|
||||||
}
|
}
|
||||||
node_types::FieldTypeInfo::ReservedWordInt(int_mapping) => {
|
node_types::FieldTypeKind::ReservedWordInt(int_mapping) => {
|
||||||
// The field will be an `int` in the db, and we add a case split to
|
// The field will be an `int` in the db, and we add a case split to
|
||||||
// create other db types for each integer value.
|
// create other db types for each integer value.
|
||||||
let mut branches: Vec<(usize, &'a str)> = Vec::new();
|
let mut branches: Vec<(usize, &'a str)> = Vec::new();
|
||||||
|
|||||||
@@ -345,16 +345,16 @@ fn create_field_getters<'a>(
|
|||||||
field: &'a node_types::Field,
|
field: &'a node_types::Field,
|
||||||
nodes: &'a node_types::NodeTypeMap,
|
nodes: &'a node_types::NodeTypeMap,
|
||||||
) -> (ql::Predicate<'a>, Option<ql::Expression<'a>>) {
|
) -> (ql::Predicate<'a>, Option<ql::Expression<'a>>) {
|
||||||
let return_type = match &field.type_info {
|
let return_type = match &field.type_info.kind {
|
||||||
node_types::FieldTypeInfo::Single(t) => {
|
node_types::FieldTypeKind::Single(t) => {
|
||||||
Some(ql::Type::Normal(&nodes.get(t).unwrap().ql_class_name))
|
Some(ql::Type::Normal(&nodes.get(t).unwrap().ql_class_name))
|
||||||
}
|
}
|
||||||
node_types::FieldTypeInfo::Multiple {
|
node_types::FieldTypeKind::Multiple {
|
||||||
types: _,
|
types: _,
|
||||||
dbscheme_union: _,
|
dbscheme_union: _,
|
||||||
ql_class,
|
ql_class,
|
||||||
} => Some(ql::Type::Normal(ql_class)),
|
} => Some(ql::Type::Normal(ql_class)),
|
||||||
node_types::FieldTypeInfo::ReservedWordInt(_) => Some(ql::Type::String),
|
node_types::FieldTypeKind::ReservedWordInt(_) => Some(ql::Type::String),
|
||||||
};
|
};
|
||||||
let formal_parameters = match &field.storage {
|
let formal_parameters = match &field.storage {
|
||||||
node_types::Storage::Column { .. } => vec![],
|
node_types::Storage::Column { .. } => vec![],
|
||||||
@@ -372,10 +372,10 @@ fn create_field_getters<'a>(
|
|||||||
|
|
||||||
// For the expression to get a value, what variable name should the result
|
// For the expression to get a value, what variable name should the result
|
||||||
// be bound to?
|
// be bound to?
|
||||||
let get_value_result_var_name = match &field.type_info {
|
let get_value_result_var_name = match &field.type_info.kind {
|
||||||
node_types::FieldTypeInfo::ReservedWordInt(_) => "value",
|
node_types::FieldTypeKind::ReservedWordInt(_) => "value",
|
||||||
node_types::FieldTypeInfo::Single(_) => "result",
|
node_types::FieldTypeKind::Single(_) => "result",
|
||||||
node_types::FieldTypeInfo::Multiple { .. } => "result",
|
node_types::FieldTypeKind::Multiple { .. } => "result",
|
||||||
};
|
};
|
||||||
|
|
||||||
// Two expressions for getting the value. One that's suitable use in the
|
// Two expressions for getting the value. One that's suitable use in the
|
||||||
@@ -418,8 +418,8 @@ fn create_field_getters<'a>(
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
let (body, optional_expr) = match &field.type_info {
|
let (body, optional_expr) = match &field.type_info.kind {
|
||||||
node_types::FieldTypeInfo::ReservedWordInt(int_mapping) => {
|
node_types::FieldTypeKind::ReservedWordInt(int_mapping) => {
|
||||||
// Create an expression that binds the corresponding string to `result` for each `value`, e.g.:
|
// Create an expression that binds the corresponding string to `result` for each `value`, e.g.:
|
||||||
// result = "foo" and value = 0 or
|
// result = "foo" and value = 0 or
|
||||||
// result = "bar" and value = 1 or
|
// result = "bar" and value = 1 or
|
||||||
@@ -454,7 +454,7 @@ fn create_field_getters<'a>(
|
|||||||
None,
|
None,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
node_types::FieldTypeInfo::Single(_) | node_types::FieldTypeInfo::Multiple { .. } => {
|
node_types::FieldTypeKind::Single(_) | node_types::FieldTypeKind::Multiple { .. } => {
|
||||||
(get_value, Some(get_value_any_index))
|
(get_value, Some(get_value_any_index))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use std::collections::BTreeMap;
|
use std::collections::{BTreeMap, HashMap, HashSet};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use std::collections::BTreeSet as Set;
|
use std::collections::BTreeSet as Set;
|
||||||
@@ -22,14 +22,23 @@ pub enum EntryKind {
|
|||||||
Token { kind_id: usize },
|
Token { kind_id: usize },
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Ord, PartialOrd, Eq, PartialEq)]
|
#[derive(Debug, Ord, PartialOrd, Eq, PartialEq, Hash, Clone)]
|
||||||
pub struct TypeName {
|
pub struct TypeName {
|
||||||
pub kind: String,
|
pub kind: String,
|
||||||
pub named: bool,
|
pub named: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Eq, PartialEq)]
|
||||||
pub enum FieldTypeInfo {
|
pub struct FieldTypeInfo {
|
||||||
|
pub kind: FieldTypeKind,
|
||||||
|
|
||||||
|
/// The set of types this field is allowed to take, after recursively
|
||||||
|
/// expanding subtypes.
|
||||||
|
pub valid_types: HashSet<TypeName>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Eq, PartialEq)]
|
||||||
|
pub enum FieldTypeKind {
|
||||||
/// The field has a single type.
|
/// The field has a single type.
|
||||||
Single(TypeName),
|
Single(TypeName),
|
||||||
|
|
||||||
@@ -103,7 +112,49 @@ fn convert_types(node_types: &[NodeType]) -> Set<TypeName> {
|
|||||||
node_types.iter().map(convert_type).collect()
|
node_types.iter().map(convert_type).collect()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn get_matching_types(
|
||||||
|
node: &NodeInfo,
|
||||||
|
type_map: &HashMap<NodeType, &NodeInfo>,
|
||||||
|
) -> HashSet<TypeName> {
|
||||||
|
let mut result = HashSet::new();
|
||||||
|
let node_type_name = TypeName {
|
||||||
|
kind: node.kind.clone(),
|
||||||
|
named: node.named,
|
||||||
|
};
|
||||||
|
result.insert(node_type_name);
|
||||||
|
if let Some(subtypes) = &node.subtypes {
|
||||||
|
for subtype in subtypes {
|
||||||
|
let subtype = type_map.get(subtype).unwrap();
|
||||||
|
result.extend(get_matching_types(subtype, type_map));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
pub fn convert_nodes(prefix: &str, nodes: &[NodeInfo]) -> NodeTypeMap {
|
pub fn convert_nodes(prefix: &str, nodes: &[NodeInfo]) -> NodeTypeMap {
|
||||||
|
// Since the nodes contain only weak references to their subtypes, build a
|
||||||
|
// map so we can resolve them.
|
||||||
|
let mut type_map: HashMap<NodeType, &NodeInfo> = HashMap::new();
|
||||||
|
for node in nodes {
|
||||||
|
let node_type = NodeType {
|
||||||
|
kind: node.kind.clone(),
|
||||||
|
named: node.named,
|
||||||
|
};
|
||||||
|
type_map.insert(node_type, node);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Now recursively expand subtypes so that for each tree-sitter node type,
|
||||||
|
// we have a set of all matching types.
|
||||||
|
let mut transitive_type_map = HashMap::new();
|
||||||
|
for node in nodes {
|
||||||
|
let type_name = TypeName {
|
||||||
|
kind: node.kind.clone(),
|
||||||
|
named: node.named,
|
||||||
|
};
|
||||||
|
let matching_types = get_matching_types(node, &type_map);
|
||||||
|
transitive_type_map.insert(type_name, matching_types);
|
||||||
|
}
|
||||||
|
|
||||||
let mut entries = NodeTypeMap::new();
|
let mut entries = NodeTypeMap::new();
|
||||||
let mut token_kinds = Set::new();
|
let mut token_kinds = Set::new();
|
||||||
|
|
||||||
@@ -166,6 +217,7 @@ pub fn convert_nodes(prefix: &str, nodes: &[NodeInfo]) -> NodeTypeMap {
|
|||||||
field_info,
|
field_info,
|
||||||
&mut fields,
|
&mut fields,
|
||||||
&token_kinds,
|
&token_kinds,
|
||||||
|
&transitive_type_map,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -178,6 +230,7 @@ pub fn convert_nodes(prefix: &str, nodes: &[NodeInfo]) -> NodeTypeMap {
|
|||||||
children,
|
children,
|
||||||
&mut fields,
|
&mut fields,
|
||||||
&token_kinds,
|
&token_kinds,
|
||||||
|
&transitive_type_map,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
entries.insert(
|
entries.insert(
|
||||||
@@ -222,6 +275,7 @@ fn add_field(
|
|||||||
field_info: &FieldInfo,
|
field_info: &FieldInfo,
|
||||||
fields: &mut Vec<Field>,
|
fields: &mut Vec<Field>,
|
||||||
token_kinds: &Set<TypeName>,
|
token_kinds: &Set<TypeName>,
|
||||||
|
transitive_type_map: &HashMap<TypeName, HashSet<TypeName>>,
|
||||||
) {
|
) {
|
||||||
let parent_flattened_name = node_type_name(&parent_type_name.kind, parent_type_name.named);
|
let parent_flattened_name = node_type_name(&parent_type_name.kind, parent_type_name.named);
|
||||||
let column_name = escape_name(&name_for_field_or_child(&field_name));
|
let column_name = escape_name(&name_for_field_or_child(&field_name));
|
||||||
@@ -245,6 +299,18 @@ fn add_field(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
let converted_types = convert_types(&field_info.types);
|
let converted_types = convert_types(&field_info.types);
|
||||||
|
|
||||||
|
// Use the transitive type map we built earlier to create the set of all
|
||||||
|
// possible types this field could take.
|
||||||
|
let mut valid_types: HashSet<TypeName> = HashSet::new();
|
||||||
|
for type_name in &converted_types {
|
||||||
|
if let Some(types) = transitive_type_map.get(type_name) {
|
||||||
|
for t in types {
|
||||||
|
valid_types.insert(t.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let type_info = if field_info
|
let type_info = if field_info
|
||||||
.types
|
.types
|
||||||
.iter()
|
.iter()
|
||||||
@@ -259,20 +325,29 @@ fn add_field(
|
|||||||
escape_name(&format!("{}_{}_{}", &prefix, parent_flattened_name, t.kind));
|
escape_name(&format!("{}_{}_{}", &prefix, parent_flattened_name, t.kind));
|
||||||
field_token_ints.insert(t.kind.to_owned(), (counter, dbscheme_variant_name));
|
field_token_ints.insert(t.kind.to_owned(), (counter, dbscheme_variant_name));
|
||||||
}
|
}
|
||||||
FieldTypeInfo::ReservedWordInt(field_token_ints)
|
FieldTypeInfo {
|
||||||
|
kind: FieldTypeKind::ReservedWordInt(field_token_ints),
|
||||||
|
valid_types,
|
||||||
|
}
|
||||||
} else if field_info.types.len() == 1 {
|
} else if field_info.types.len() == 1 {
|
||||||
FieldTypeInfo::Single(converted_types.into_iter().next().unwrap())
|
FieldTypeInfo {
|
||||||
|
kind: FieldTypeKind::Single(converted_types.into_iter().next().unwrap()),
|
||||||
|
valid_types,
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// The dbscheme type for this field will be a union. In QL, it'll just be AstNode.
|
// The dbscheme type for this field will be a union. In QL, it'll just be AstNode.
|
||||||
FieldTypeInfo::Multiple {
|
FieldTypeInfo {
|
||||||
types: converted_types,
|
kind: FieldTypeKind::Multiple {
|
||||||
dbscheme_union: format!(
|
types: converted_types,
|
||||||
"{}_{}_{}_type",
|
dbscheme_union: format!(
|
||||||
&prefix,
|
"{}_{}_{}_type",
|
||||||
&parent_flattened_name,
|
&prefix,
|
||||||
&name_for_field_or_child(&field_name)
|
&parent_flattened_name,
|
||||||
),
|
&name_for_field_or_child(&field_name)
|
||||||
ql_class: "AstNode".to_owned(),
|
),
|
||||||
|
ql_class: "AstNode".to_owned(),
|
||||||
|
},
|
||||||
|
valid_types,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let getter_name = format!(
|
let getter_name = format!(
|
||||||
@@ -303,7 +378,7 @@ pub struct NodeInfo {
|
|||||||
pub subtypes: Option<Vec<NodeType>>,
|
pub subtypes: Option<Vec<NodeType>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize, Hash, Eq, PartialEq)]
|
||||||
pub struct NodeType {
|
pub struct NodeType {
|
||||||
#[serde(rename = "type")]
|
#[serde(rename = "type")]
|
||||||
pub kind: String,
|
pub kind: String,
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ private import codeql.ruby.AST
|
|||||||
private import codeql.ruby.security.performance.RegExpTreeView as RETV
|
private import codeql.ruby.security.performance.RegExpTreeView as RETV
|
||||||
private import internal.AST
|
private import internal.AST
|
||||||
private import internal.Constant
|
private import internal.Constant
|
||||||
|
private import internal.Literal
|
||||||
private import internal.Scope
|
private import internal.Scope
|
||||||
private import internal.TreeSitter
|
private import internal.TreeSitter
|
||||||
private import codeql.ruby.controlflow.CfgNodes
|
private import codeql.ruby.controlflow.CfgNodes
|
||||||
@@ -36,9 +37,9 @@ class NumericLiteral extends Literal, TNumericLiteral { }
|
|||||||
* 0xff
|
* 0xff
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
class IntegerLiteral extends NumericLiteral, TIntegerLiteral {
|
class IntegerLiteral extends NumericLiteral instanceof IntegerLiteralImpl {
|
||||||
/** Gets the numerical value of this integer literal. */
|
/** Gets the numerical value of this integer literal. */
|
||||||
int getValue() { none() }
|
final int getValue() { result = super.getValueImpl() }
|
||||||
|
|
||||||
final override ConstantValue::ConstantIntegerValue getConstantValue() {
|
final override ConstantValue::ConstantIntegerValue getConstantValue() {
|
||||||
result.isInt(this.getValue())
|
result.isInt(this.getValue())
|
||||||
@@ -47,76 +48,6 @@ class IntegerLiteral extends NumericLiteral, TIntegerLiteral {
|
|||||||
final override string getAPrimaryQlClass() { result = "IntegerLiteral" }
|
final override string getAPrimaryQlClass() { result = "IntegerLiteral" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private int parseInteger(Ruby::Integer i) {
|
|
||||||
exists(string s | s = i.getValue().toLowerCase().replaceAll("_", "") |
|
|
||||||
s.charAt(0) != "0" and
|
|
||||||
result = s.toInt()
|
|
||||||
or
|
|
||||||
exists(string str, string values, int shift |
|
|
||||||
s.matches("0b%") and
|
|
||||||
values = "01" and
|
|
||||||
str = s.suffix(2) and
|
|
||||||
shift = 1
|
|
||||||
or
|
|
||||||
s.matches("0x%") and
|
|
||||||
values = "0123456789abcdef" and
|
|
||||||
str = s.suffix(2) and
|
|
||||||
shift = 4
|
|
||||||
or
|
|
||||||
s.charAt(0) = "0" and
|
|
||||||
not s.charAt(1) = ["b", "x", "o"] and
|
|
||||||
values = "01234567" and
|
|
||||||
str = s.suffix(1) and
|
|
||||||
shift = 3
|
|
||||||
or
|
|
||||||
s.matches("0o%") and
|
|
||||||
values = "01234567" and
|
|
||||||
str = s.suffix(2) and
|
|
||||||
shift = 3
|
|
||||||
|
|
|
||||||
result =
|
|
||||||
sum(int index, string c, int v, int exp |
|
|
||||||
c = str.charAt(index) and
|
|
||||||
v = values.indexOf(c.toLowerCase()) and
|
|
||||||
exp = str.length() - index - 1
|
|
||||||
|
|
|
||||||
v.bitShiftLeft((str.length() - index - 1) * shift)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredIntegerLiteralConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredInt(int i) { i = any(IntegerLiteral il).getValue() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class IntegerLiteralReal extends IntegerLiteral, TIntegerLiteralReal {
|
|
||||||
private Ruby::Integer g;
|
|
||||||
|
|
||||||
IntegerLiteralReal() { this = TIntegerLiteralReal(g) }
|
|
||||||
|
|
||||||
final override int getValue() { result = parseInteger(g) }
|
|
||||||
|
|
||||||
final override string toString() { result = g.getValue() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class IntegerLiteralSynth extends IntegerLiteral, TIntegerLiteralSynth {
|
|
||||||
private int value;
|
|
||||||
|
|
||||||
IntegerLiteralSynth() { this = TIntegerLiteralSynth(_, _, value) }
|
|
||||||
|
|
||||||
final override int getValue() { result = value }
|
|
||||||
|
|
||||||
final override string toString() { result = value.toString() }
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: implement properly
|
|
||||||
private float parseFloat(Ruby::Float f) { result = f.getValue().toFloat() }
|
|
||||||
|
|
||||||
private class RequiredFloatConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredFloat(float f) { f = parseFloat(_) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A floating-point literal.
|
* A floating-point literal.
|
||||||
*
|
*
|
||||||
@@ -139,26 +70,6 @@ class FloatLiteral extends NumericLiteral, TFloatLiteral {
|
|||||||
final override string getAPrimaryQlClass() { result = "FloatLiteral" }
|
final override string getAPrimaryQlClass() { result = "FloatLiteral" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private predicate isRationalValue(Ruby::Rational r, int numerator, int denominator) {
|
|
||||||
numerator = parseInteger(r.getChild()) and
|
|
||||||
denominator = 1
|
|
||||||
or
|
|
||||||
exists(Ruby::Float f, string regex, string before, string after |
|
|
||||||
f = r.getChild() and
|
|
||||||
regex = "([^.]*)\\.(.*)" and
|
|
||||||
before = f.getValue().regexpCapture(regex, 1) and
|
|
||||||
after = f.getValue().regexpCapture(regex, 2) and
|
|
||||||
numerator = before.toInt() * denominator + after.toInt() and
|
|
||||||
denominator = 10.pow(after.length())
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredRationalConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredRational(int numerator, int denominator) {
|
|
||||||
isRationalValue(_, numerator, denominator)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A rational literal.
|
* A rational literal.
|
||||||
*
|
*
|
||||||
@@ -183,20 +94,6 @@ class RationalLiteral extends NumericLiteral, TRationalLiteral {
|
|||||||
final override string getAPrimaryQlClass() { result = "RationalLiteral" }
|
final override string getAPrimaryQlClass() { result = "RationalLiteral" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private float getComplexValue(Ruby::Complex c) {
|
|
||||||
exists(string s |
|
|
||||||
s = c.getValue() and
|
|
||||||
result = s.prefix(s.length() - 1).toFloat()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredComplexConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredComplex(float real, float imaginary) {
|
|
||||||
real = 0 and
|
|
||||||
imaginary = getComplexValue(_)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A complex literal.
|
* A complex literal.
|
||||||
*
|
*
|
||||||
@@ -261,30 +158,6 @@ class BooleanLiteral extends Literal, TBooleanLiteral {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class TrueLiteral extends BooleanLiteral, TTrueLiteral {
|
|
||||||
private Ruby::True g;
|
|
||||||
|
|
||||||
TrueLiteral() { this = TTrueLiteral(g) }
|
|
||||||
|
|
||||||
final override string toString() { result = g.getValue() }
|
|
||||||
|
|
||||||
final override predicate isTrue() { any() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class FalseLiteral extends BooleanLiteral, TFalseLiteral {
|
|
||||||
private Ruby::False g;
|
|
||||||
|
|
||||||
FalseLiteral() { this = TFalseLiteral(g) }
|
|
||||||
|
|
||||||
final override string toString() { result = g.getValue() }
|
|
||||||
|
|
||||||
final override predicate isFalse() { any() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredEncodingLiteralConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) { s = "UTF-8" }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An `__ENCODING__` literal.
|
* An `__ENCODING__` literal.
|
||||||
*/
|
*/
|
||||||
@@ -297,10 +170,6 @@ class EncodingLiteral extends Literal, TEncoding {
|
|||||||
override ConstantValue::ConstantStringValue getConstantValue() { result.isString("UTF-8") }
|
override ConstantValue::ConstantStringValue getConstantValue() { result.isString("UTF-8") }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RequiredLineLiteralConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredInt(int i) { i = any(LineLiteral ll).getLocation().getStartLine() }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A `__LINE__` literal.
|
* A `__LINE__` literal.
|
||||||
*/
|
*/
|
||||||
@@ -314,12 +183,6 @@ class LineLiteral extends Literal, TLine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RequiredFileLiteralConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) {
|
|
||||||
s = any(FileLiteral fl).getLocation().getFile().getAbsolutePath()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A `__FILE__` literal.
|
* A `__FILE__` literal.
|
||||||
*/
|
*/
|
||||||
@@ -350,12 +213,6 @@ class StringComponent extends AstNode, TStringComponent {
|
|||||||
ConstantValue::ConstantStringValue getConstantValue() { none() }
|
ConstantValue::ConstantStringValue getConstantValue() { none() }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RequiredStringTextComponentConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) {
|
|
||||||
s = any(Ruby::Token t | exists(TStringTextComponentNonRegexp(t))).getValue()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A component of a string (or string-like) literal that is simply text.
|
* A component of a string (or string-like) literal that is simply text.
|
||||||
*
|
*
|
||||||
@@ -382,12 +239,6 @@ class StringTextComponent extends StringComponent, TStringTextComponentNonRegexp
|
|||||||
final override string getAPrimaryQlClass() { result = "StringTextComponent" }
|
final override string getAPrimaryQlClass() { result = "StringTextComponent" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RequiredStringEscapeSequenceComponentConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) {
|
|
||||||
s = any(Ruby::Token t | exists(TStringEscapeSequenceComponentNonRegexp(t))).getValue()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An escape sequence component of a string or string-like literal.
|
* An escape sequence component of a string or string-like literal.
|
||||||
*/
|
*/
|
||||||
@@ -425,10 +276,6 @@ class StringInterpolationComponent extends StringComponent, StmtSequence,
|
|||||||
final override string getAPrimaryQlClass() { result = "StringInterpolationComponent" }
|
final override string getAPrimaryQlClass() { result = "StringInterpolationComponent" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class TRegExpComponent =
|
|
||||||
TStringTextComponentRegexp or TStringEscapeSequenceComponentRegexp or
|
|
||||||
TStringInterpolationComponentRegexp;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base class for a component of a regular expression literal.
|
* The base class for a component of a regular expression literal.
|
||||||
*/
|
*/
|
||||||
@@ -444,20 +291,6 @@ class RegExpComponent extends AstNode, TRegExpComponent {
|
|||||||
ConstantValue::ConstantStringValue getConstantValue() { none() }
|
ConstantValue::ConstantStringValue getConstantValue() { none() }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exclude components that are children of a free-spacing regex.
|
|
||||||
// We do this because `ParseRegExp.qll` cannot handle free-spacing regexes.
|
|
||||||
private string getRegExpTextComponentValue(RegExpTextComponent c) {
|
|
||||||
exists(Ruby::Token t |
|
|
||||||
c = TStringTextComponentRegexp(t) and
|
|
||||||
not c.getParent().(RegExpLiteral).hasFreeSpacingFlag() and
|
|
||||||
result = t.getValue()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredRegExpTextComponentConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) { s = getRegExpTextComponentValue(_) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A component of a regex literal that is simply text.
|
* A component of a regex literal that is simply text.
|
||||||
*
|
*
|
||||||
@@ -484,20 +317,6 @@ class RegExpTextComponent extends RegExpComponent, TStringTextComponentRegexp {
|
|||||||
final override string getAPrimaryQlClass() { result = "RegExpTextComponent" }
|
final override string getAPrimaryQlClass() { result = "RegExpTextComponent" }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exclude components that are children of a free-spacing regex.
|
|
||||||
// We do this because `ParseRegExp.qll` cannot handle free-spacing regexes.
|
|
||||||
private string getRegExpEscapeSequenceComponentValue(RegExpEscapeSequenceComponent c) {
|
|
||||||
exists(Ruby::EscapeSequence e |
|
|
||||||
c = TStringEscapeSequenceComponentRegexp(e) and
|
|
||||||
not c.getParent().(RegExpLiteral).hasFreeSpacingFlag() and
|
|
||||||
result = e.getValue()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredRegExpEscapeSequenceComponentConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) { s = getRegExpEscapeSequenceComponentValue(_) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An escape sequence component of a regex literal.
|
* An escape sequence component of a regex literal.
|
||||||
*/
|
*/
|
||||||
@@ -662,22 +481,6 @@ class StringLiteral extends StringlikeLiteral, TStringLiteral {
|
|||||||
final override string getAPrimaryQlClass() { result = "StringLiteral" }
|
final override string getAPrimaryQlClass() { result = "StringLiteral" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RegularStringLiteral extends StringLiteral, TRegularStringLiteral {
|
|
||||||
private Ruby::String g;
|
|
||||||
|
|
||||||
RegularStringLiteral() { this = TRegularStringLiteral(g) }
|
|
||||||
|
|
||||||
final override StringComponent getComponent(int n) { toGenerated(result) = g.getChild(n) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class BareStringLiteral extends StringLiteral, TBareStringLiteral {
|
|
||||||
private Ruby::BareString g;
|
|
||||||
|
|
||||||
BareStringLiteral() { this = TBareStringLiteral(g) }
|
|
||||||
|
|
||||||
final override StringComponent getComponent(int n) { toGenerated(result) = g.getChild(n) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A regular expression literal.
|
* A regular expression literal.
|
||||||
*
|
*
|
||||||
@@ -762,13 +565,6 @@ class SymbolLiteral extends StringlikeLiteral, TSymbolLiteral {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tree-sitter gives us value text including the colon, which we skip.
|
|
||||||
private string getSimpleSymbolValue(Ruby::SimpleSymbol ss) { result = ss.getValue().suffix(1) }
|
|
||||||
|
|
||||||
private class RequiredSimpleSymbolConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredSymbol(string s) { s = getSimpleSymbolValue(_) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class SimpleSymbolLiteral extends SymbolLiteral, TSimpleSymbolLiteral {
|
private class SimpleSymbolLiteral extends SymbolLiteral, TSimpleSymbolLiteral {
|
||||||
private Ruby::SimpleSymbol g;
|
private Ruby::SimpleSymbol g;
|
||||||
|
|
||||||
@@ -781,40 +577,6 @@ private class SimpleSymbolLiteral extends SymbolLiteral, TSimpleSymbolLiteral {
|
|||||||
final override string toString() { result = g.getValue() }
|
final override string toString() { result = g.getValue() }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ComplexSymbolLiteral extends SymbolLiteral, TComplexSymbolLiteral { }
|
|
||||||
|
|
||||||
private class DelimitedSymbolLiteral extends ComplexSymbolLiteral, TDelimitedSymbolLiteral {
|
|
||||||
private Ruby::DelimitedSymbol g;
|
|
||||||
|
|
||||||
DelimitedSymbolLiteral() { this = TDelimitedSymbolLiteral(g) }
|
|
||||||
|
|
||||||
final override StringComponent getComponent(int i) { toGenerated(result) = g.getChild(i) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class BareSymbolLiteral extends ComplexSymbolLiteral, TBareSymbolLiteral {
|
|
||||||
private Ruby::BareSymbol g;
|
|
||||||
|
|
||||||
BareSymbolLiteral() { this = TBareSymbolLiteral(g) }
|
|
||||||
|
|
||||||
final override StringComponent getComponent(int i) { toGenerated(result) = g.getChild(i) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredHashKeySymbolConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredSymbol(string s) { s = any(Ruby::HashKeySymbol h).getValue() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class HashKeySymbolLiteral extends SymbolLiteral, THashKeySymbolLiteral {
|
|
||||||
private Ruby::HashKeySymbol g;
|
|
||||||
|
|
||||||
HashKeySymbolLiteral() { this = THashKeySymbolLiteral(g) }
|
|
||||||
|
|
||||||
final override ConstantValue::ConstantSymbolValue getConstantValue() {
|
|
||||||
result.isSymbol(g.getValue())
|
|
||||||
}
|
|
||||||
|
|
||||||
final override string toString() { result = ":" + g.getValue() }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A subshell literal.
|
* A subshell literal.
|
||||||
*
|
*
|
||||||
@@ -933,67 +695,25 @@ class HereDoc extends StringlikeLiteral, THereDoc {
|
|||||||
* %i(foo bar)
|
* %i(foo bar)
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
class ArrayLiteral extends Literal, TArrayLiteral {
|
class ArrayLiteral extends Literal instanceof ArrayLiteralImpl {
|
||||||
final override string getAPrimaryQlClass() { result = "ArrayLiteral" }
|
final override string getAPrimaryQlClass() { result = "ArrayLiteral" }
|
||||||
|
|
||||||
/** Gets the `n`th element in this array literal. */
|
/** Gets the `n`th element in this array literal. */
|
||||||
final Expr getElement(int n) { result = this.(ArrayLiteralImpl).getElementImpl(n) }
|
final Expr getElement(int n) { result = super.getElementImpl(n) }
|
||||||
|
|
||||||
/** Gets an element in this array literal. */
|
/** Gets an element in this array literal. */
|
||||||
final Expr getAnElement() { result = this.getElement(_) }
|
final Expr getAnElement() { result = this.getElement(_) }
|
||||||
|
|
||||||
/** Gets the number of elements in this array literal. */
|
/** Gets the number of elements in this array literal. */
|
||||||
final int getNumberOfElements() { result = this.(ArrayLiteralImpl).getNumberOfElementsImpl() }
|
final int getNumberOfElements() { result = super.getNumberOfElementsImpl() }
|
||||||
|
|
||||||
final override AstNode getAChild(string pred) {
|
final override AstNode getAChild(string pred) {
|
||||||
result = super.getAChild(pred)
|
result = Literal.super.getAChild(pred)
|
||||||
or
|
or
|
||||||
pred = "getElement" and result = this.getElement(_)
|
pred = "getElement" and result = this.getElement(_)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract private class ArrayLiteralImpl extends ArrayLiteral {
|
|
||||||
abstract Expr getElementImpl(int n);
|
|
||||||
|
|
||||||
abstract int getNumberOfElementsImpl();
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RegularArrayLiteral extends ArrayLiteralImpl, TRegularArrayLiteral {
|
|
||||||
private Ruby::Array g;
|
|
||||||
|
|
||||||
RegularArrayLiteral() { this = TRegularArrayLiteral(g) }
|
|
||||||
|
|
||||||
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
|
||||||
|
|
||||||
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
|
||||||
|
|
||||||
final override string toString() { result = "[...]" }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class StringArrayLiteral extends ArrayLiteralImpl, TStringArrayLiteral {
|
|
||||||
private Ruby::StringArray g;
|
|
||||||
|
|
||||||
StringArrayLiteral() { this = TStringArrayLiteral(g) }
|
|
||||||
|
|
||||||
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
|
||||||
|
|
||||||
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
|
||||||
|
|
||||||
final override string toString() { result = "%w(...)" }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class SymbolArrayLiteral extends ArrayLiteralImpl, TSymbolArrayLiteral {
|
|
||||||
private Ruby::SymbolArray g;
|
|
||||||
|
|
||||||
SymbolArrayLiteral() { this = TSymbolArrayLiteral(g) }
|
|
||||||
|
|
||||||
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
|
||||||
|
|
||||||
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
|
||||||
|
|
||||||
final override string toString() { result = "%i(...)" }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A hash literal.
|
* A hash literal.
|
||||||
*
|
*
|
||||||
@@ -1001,7 +721,7 @@ private class SymbolArrayLiteral extends ArrayLiteralImpl, TSymbolArrayLiteral {
|
|||||||
* { foo: 123, bar: 456 }
|
* { foo: 123, bar: 456 }
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
class HashLiteral extends Literal, THashLiteral {
|
class HashLiteral extends Literal instanceof HashLiteralImpl {
|
||||||
private Ruby::Hash g;
|
private Ruby::Hash g;
|
||||||
|
|
||||||
HashLiteral() { this = THashLiteral(g) }
|
HashLiteral() { this = THashLiteral(g) }
|
||||||
@@ -1027,12 +747,12 @@ class HashLiteral extends Literal, THashLiteral {
|
|||||||
final Pair getAKeyValuePair() { result = this.getAnElement() }
|
final Pair getAKeyValuePair() { result = this.getAnElement() }
|
||||||
|
|
||||||
/** Gets the number of elements in this hash literal. */
|
/** Gets the number of elements in this hash literal. */
|
||||||
final int getNumberOfElements() { result = count(this.getAnElement()) }
|
final int getNumberOfElements() { result = super.getNumberOfElementsImpl() }
|
||||||
|
|
||||||
final override string toString() { result = "{...}" }
|
final override string toString() { result = "{...}" }
|
||||||
|
|
||||||
final override AstNode getAChild(string pred) {
|
final override AstNode getAChild(string pred) {
|
||||||
result = super.getAChild(pred)
|
result = Literal.super.getAChild(pred)
|
||||||
or
|
or
|
||||||
pred = "getElement" and result = this.getElement(_)
|
pred = "getElement" and result = this.getElement(_)
|
||||||
}
|
}
|
||||||
@@ -1086,34 +806,6 @@ class RangeLiteral extends Literal, TRangeLiteral {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RangeLiteralReal extends RangeLiteral, TRangeLiteralReal {
|
|
||||||
private Ruby::Range g;
|
|
||||||
|
|
||||||
RangeLiteralReal() { this = TRangeLiteralReal(g) }
|
|
||||||
|
|
||||||
final override Expr getBegin() { toGenerated(result) = g.getBegin() }
|
|
||||||
|
|
||||||
final override Expr getEnd() { toGenerated(result) = g.getEnd() }
|
|
||||||
|
|
||||||
final override predicate isInclusive() { g instanceof @ruby_range_dotdot }
|
|
||||||
|
|
||||||
final override predicate isExclusive() { g instanceof @ruby_range_dotdotdot }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RangeLiteralSynth extends RangeLiteral, TRangeLiteralSynth {
|
|
||||||
private boolean inclusive;
|
|
||||||
|
|
||||||
RangeLiteralSynth() { this = TRangeLiteralSynth(_, _, inclusive) }
|
|
||||||
|
|
||||||
final override Expr getBegin() { result = TIntegerLiteralSynth(this, 0, _) }
|
|
||||||
|
|
||||||
final override Expr getEnd() { result = TIntegerLiteralSynth(this, 1, _) }
|
|
||||||
|
|
||||||
final override predicate isInclusive() { inclusive = true }
|
|
||||||
|
|
||||||
final override predicate isExclusive() { inclusive = false }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A method name literal. For example:
|
* A method name literal. For example:
|
||||||
* ```rb
|
* ```rb
|
||||||
@@ -1128,25 +820,3 @@ class MethodName extends Literal {
|
|||||||
|
|
||||||
final override string getAPrimaryQlClass() { result = "MethodName" }
|
final override string getAPrimaryQlClass() { result = "MethodName" }
|
||||||
}
|
}
|
||||||
|
|
||||||
private string getMethodName(MethodName::Token t) {
|
|
||||||
result = t.(Ruby::Token).getValue()
|
|
||||||
or
|
|
||||||
result = t.(Ruby::Setter).getName().getValue() + "="
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RequiredMethodNameConstantValue extends RequiredConstantValue {
|
|
||||||
override predicate requiredString(string s) { s = getMethodName(_) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class TokenMethodName extends MethodName, TTokenMethodName {
|
|
||||||
private MethodName::Token g;
|
|
||||||
|
|
||||||
TokenMethodName() { this = TTokenMethodName(g) }
|
|
||||||
|
|
||||||
final override ConstantValue::ConstantStringValue getConstantValue() {
|
|
||||||
result.isString(getMethodName(g))
|
|
||||||
}
|
|
||||||
|
|
||||||
final override string toString() { result = getMethodName(g) }
|
|
||||||
}
|
|
||||||
|
|||||||
364
ruby/ql/lib/codeql/ruby/ast/internal/Literal.qll
Normal file
364
ruby/ql/lib/codeql/ruby/ast/internal/Literal.qll
Normal file
@@ -0,0 +1,364 @@
|
|||||||
|
private import codeql.ruby.AST
|
||||||
|
private import AST
|
||||||
|
private import Constant
|
||||||
|
private import TreeSitter
|
||||||
|
private import codeql.ruby.controlflow.CfgNodes
|
||||||
|
|
||||||
|
int parseInteger(Ruby::Integer i) {
|
||||||
|
exists(string s | s = i.getValue().toLowerCase().replaceAll("_", "") |
|
||||||
|
s.charAt(0) != "0" and
|
||||||
|
result = s.toInt()
|
||||||
|
or
|
||||||
|
exists(string str, string values, int shift |
|
||||||
|
s.matches("0b%") and
|
||||||
|
values = "01" and
|
||||||
|
str = s.suffix(2) and
|
||||||
|
shift = 1
|
||||||
|
or
|
||||||
|
s.matches("0x%") and
|
||||||
|
values = "0123456789abcdef" and
|
||||||
|
str = s.suffix(2) and
|
||||||
|
shift = 4
|
||||||
|
or
|
||||||
|
s.charAt(0) = "0" and
|
||||||
|
not s.charAt(1) = ["b", "x", "o"] and
|
||||||
|
values = "01234567" and
|
||||||
|
str = s.suffix(1) and
|
||||||
|
shift = 3
|
||||||
|
or
|
||||||
|
s.matches("0o%") and
|
||||||
|
values = "01234567" and
|
||||||
|
str = s.suffix(2) and
|
||||||
|
shift = 3
|
||||||
|
|
|
||||||
|
result =
|
||||||
|
sum(int index, string c, int v, int exp |
|
||||||
|
c = str.charAt(index) and
|
||||||
|
v = values.indexOf(c.toLowerCase()) and
|
||||||
|
exp = str.length() - index - 1
|
||||||
|
|
|
||||||
|
v.bitShiftLeft((str.length() - index - 1) * shift)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredIntegerLiteralConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredInt(int i) { i = any(IntegerLiteral il).getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract class IntegerLiteralImpl extends Expr, TIntegerLiteral {
|
||||||
|
abstract int getValueImpl();
|
||||||
|
}
|
||||||
|
|
||||||
|
class IntegerLiteralReal extends IntegerLiteralImpl, TIntegerLiteralReal {
|
||||||
|
private Ruby::Integer g;
|
||||||
|
|
||||||
|
IntegerLiteralReal() { this = TIntegerLiteralReal(g) }
|
||||||
|
|
||||||
|
final override int getValueImpl() { result = parseInteger(g) }
|
||||||
|
|
||||||
|
final override string toString() { result = g.getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
class IntegerLiteralSynth extends IntegerLiteralImpl, TIntegerLiteralSynth {
|
||||||
|
private int value;
|
||||||
|
|
||||||
|
IntegerLiteralSynth() { this = TIntegerLiteralSynth(_, _, value) }
|
||||||
|
|
||||||
|
final override int getValueImpl() { result = value }
|
||||||
|
|
||||||
|
final override string toString() { result = value.toString() }
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: implement properly
|
||||||
|
float parseFloat(Ruby::Float f) { result = f.getValue().toFloat() }
|
||||||
|
|
||||||
|
private class RequiredFloatConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredFloat(float f) { f = parseFloat(_) }
|
||||||
|
}
|
||||||
|
|
||||||
|
predicate isRationalValue(Ruby::Rational r, int numerator, int denominator) {
|
||||||
|
numerator = parseInteger(r.getChild()) and
|
||||||
|
denominator = 1
|
||||||
|
or
|
||||||
|
exists(Ruby::Float f, string regex, string before, string after |
|
||||||
|
f = r.getChild() and
|
||||||
|
regex = "([^.]*)\\.(.*)" and
|
||||||
|
before = f.getValue().regexpCapture(regex, 1) and
|
||||||
|
after = f.getValue().regexpCapture(regex, 2) and
|
||||||
|
numerator = before.toInt() * denominator + after.toInt() and
|
||||||
|
denominator = 10.pow(after.length())
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredRationalConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredRational(int numerator, int denominator) {
|
||||||
|
isRationalValue(_, numerator, denominator)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
float getComplexValue(Ruby::Complex c) {
|
||||||
|
exists(string s |
|
||||||
|
s = c.getValue() and
|
||||||
|
result = s.prefix(s.length() - 1).toFloat()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredComplexConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredComplex(float real, float imaginary) {
|
||||||
|
real = 0 and
|
||||||
|
imaginary = getComplexValue(_)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TrueLiteral extends BooleanLiteral, TTrueLiteral {
|
||||||
|
private Ruby::True g;
|
||||||
|
|
||||||
|
TrueLiteral() { this = TTrueLiteral(g) }
|
||||||
|
|
||||||
|
final override string toString() { result = g.getValue() }
|
||||||
|
|
||||||
|
final override predicate isTrue() { any() }
|
||||||
|
}
|
||||||
|
|
||||||
|
class FalseLiteral extends BooleanLiteral, TFalseLiteral {
|
||||||
|
private Ruby::False g;
|
||||||
|
|
||||||
|
FalseLiteral() { this = TFalseLiteral(g) }
|
||||||
|
|
||||||
|
final override string toString() { result = g.getValue() }
|
||||||
|
|
||||||
|
final override predicate isFalse() { any() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredEncodingLiteralConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) { s = "UTF-8" }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredLineLiteralConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredInt(int i) { i = any(LineLiteral ll).getLocation().getStartLine() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredFileLiteralConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) {
|
||||||
|
s = any(FileLiteral fl).getLocation().getFile().getAbsolutePath()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredStringTextComponentConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) {
|
||||||
|
s = any(Ruby::Token t | exists(TStringTextComponentNonRegexp(t))).getValue()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredStringEscapeSequenceComponentConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) {
|
||||||
|
s = any(Ruby::Token t | exists(TStringEscapeSequenceComponentNonRegexp(t))).getValue()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TRegExpComponent =
|
||||||
|
TStringTextComponentRegexp or TStringEscapeSequenceComponentRegexp or
|
||||||
|
TStringInterpolationComponentRegexp;
|
||||||
|
|
||||||
|
// Exclude components that are children of a free-spacing regex.
|
||||||
|
// We do this because `ParseRegExp.qll` cannot handle free-spacing regexes.
|
||||||
|
string getRegExpTextComponentValue(RegExpTextComponent c) {
|
||||||
|
exists(Ruby::Token t |
|
||||||
|
c = TStringTextComponentRegexp(t) and
|
||||||
|
not c.getParent().(RegExpLiteral).hasFreeSpacingFlag() and
|
||||||
|
result = t.getValue()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredRegExpTextComponentConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) { s = getRegExpTextComponentValue(_) }
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exclude components that are children of a free-spacing regex.
|
||||||
|
// We do this because `ParseRegExp.qll` cannot handle free-spacing regexes.
|
||||||
|
string getRegExpEscapeSequenceComponentValue(RegExpEscapeSequenceComponent c) {
|
||||||
|
exists(Ruby::EscapeSequence e |
|
||||||
|
c = TStringEscapeSequenceComponentRegexp(e) and
|
||||||
|
not c.getParent().(RegExpLiteral).hasFreeSpacingFlag() and
|
||||||
|
result = e.getValue()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredRegExpEscapeSequenceComponentConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) { s = getRegExpEscapeSequenceComponentValue(_) }
|
||||||
|
}
|
||||||
|
|
||||||
|
class RegularStringLiteral extends StringLiteral, TRegularStringLiteral {
|
||||||
|
private Ruby::String g;
|
||||||
|
|
||||||
|
RegularStringLiteral() { this = TRegularStringLiteral(g) }
|
||||||
|
|
||||||
|
final override StringComponent getComponent(int n) { toGenerated(result) = g.getChild(n) }
|
||||||
|
}
|
||||||
|
|
||||||
|
class BareStringLiteral extends StringLiteral, TBareStringLiteral {
|
||||||
|
private Ruby::BareString g;
|
||||||
|
|
||||||
|
BareStringLiteral() { this = TBareStringLiteral(g) }
|
||||||
|
|
||||||
|
final override StringComponent getComponent(int n) { toGenerated(result) = g.getChild(n) }
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tree-sitter gives us value text including the colon, which we skip.
|
||||||
|
string getSimpleSymbolValue(Ruby::SimpleSymbol ss) { result = ss.getValue().suffix(1) }
|
||||||
|
|
||||||
|
private class RequiredSimpleSymbolConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredSymbol(string s) { s = getSimpleSymbolValue(_) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class SimpleSymbolLiteral extends SymbolLiteral, TSimpleSymbolLiteral {
|
||||||
|
private Ruby::SimpleSymbol g;
|
||||||
|
|
||||||
|
SimpleSymbolLiteral() { this = TSimpleSymbolLiteral(g) }
|
||||||
|
|
||||||
|
final override ConstantValue::ConstantSymbolValue getConstantValue() {
|
||||||
|
result.isSymbol(getSimpleSymbolValue(g))
|
||||||
|
}
|
||||||
|
|
||||||
|
final override string toString() { result = g.getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
class ComplexSymbolLiteral extends SymbolLiteral, TComplexSymbolLiteral { }
|
||||||
|
|
||||||
|
class DelimitedSymbolLiteral extends ComplexSymbolLiteral, TDelimitedSymbolLiteral {
|
||||||
|
private Ruby::DelimitedSymbol g;
|
||||||
|
|
||||||
|
DelimitedSymbolLiteral() { this = TDelimitedSymbolLiteral(g) }
|
||||||
|
|
||||||
|
final override StringComponent getComponent(int i) { toGenerated(result) = g.getChild(i) }
|
||||||
|
}
|
||||||
|
|
||||||
|
class BareSymbolLiteral extends ComplexSymbolLiteral, TBareSymbolLiteral {
|
||||||
|
private Ruby::BareSymbol g;
|
||||||
|
|
||||||
|
BareSymbolLiteral() { this = TBareSymbolLiteral(g) }
|
||||||
|
|
||||||
|
final override StringComponent getComponent(int i) { toGenerated(result) = g.getChild(i) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredHashKeySymbolConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredSymbol(string s) { s = any(Ruby::HashKeySymbol h).getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class HashKeySymbolLiteral extends SymbolLiteral, THashKeySymbolLiteral {
|
||||||
|
private Ruby::HashKeySymbol g;
|
||||||
|
|
||||||
|
HashKeySymbolLiteral() { this = THashKeySymbolLiteral(g) }
|
||||||
|
|
||||||
|
final override ConstantValue::ConstantSymbolValue getConstantValue() {
|
||||||
|
result.isSymbol(g.getValue())
|
||||||
|
}
|
||||||
|
|
||||||
|
final override string toString() { result = ":" + g.getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredCharacterConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) { s = any(Ruby::Character c).getValue() }
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract class ArrayLiteralImpl extends Literal, TArrayLiteral {
|
||||||
|
abstract Expr getElementImpl(int n);
|
||||||
|
|
||||||
|
abstract int getNumberOfElementsImpl();
|
||||||
|
}
|
||||||
|
|
||||||
|
class RegularArrayLiteral extends ArrayLiteralImpl, TRegularArrayLiteral {
|
||||||
|
private Ruby::Array g;
|
||||||
|
|
||||||
|
RegularArrayLiteral() { this = TRegularArrayLiteral(g) }
|
||||||
|
|
||||||
|
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
||||||
|
|
||||||
|
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
||||||
|
|
||||||
|
final override string toString() { result = "[...]" }
|
||||||
|
}
|
||||||
|
|
||||||
|
class StringArrayLiteral extends ArrayLiteralImpl, TStringArrayLiteral {
|
||||||
|
private Ruby::StringArray g;
|
||||||
|
|
||||||
|
StringArrayLiteral() { this = TStringArrayLiteral(g) }
|
||||||
|
|
||||||
|
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
||||||
|
|
||||||
|
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
||||||
|
|
||||||
|
final override string toString() { result = "%w(...)" }
|
||||||
|
}
|
||||||
|
|
||||||
|
class SymbolArrayLiteral extends ArrayLiteralImpl, TSymbolArrayLiteral {
|
||||||
|
private Ruby::SymbolArray g;
|
||||||
|
|
||||||
|
SymbolArrayLiteral() { this = TSymbolArrayLiteral(g) }
|
||||||
|
|
||||||
|
final override Expr getElementImpl(int i) { toGenerated(result) = g.getChild(i) }
|
||||||
|
|
||||||
|
final override int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
||||||
|
|
||||||
|
final override string toString() { result = "%i(...)" }
|
||||||
|
}
|
||||||
|
|
||||||
|
class HashLiteralImpl extends Literal, THashLiteral {
|
||||||
|
Ruby::Hash g;
|
||||||
|
|
||||||
|
HashLiteralImpl() { this = THashLiteral(g) }
|
||||||
|
|
||||||
|
final int getNumberOfElementsImpl() { result = count(g.getChild(_)) }
|
||||||
|
}
|
||||||
|
|
||||||
|
class RangeLiteralReal extends RangeLiteral, TRangeLiteralReal {
|
||||||
|
private Ruby::Range g;
|
||||||
|
|
||||||
|
RangeLiteralReal() { this = TRangeLiteralReal(g) }
|
||||||
|
|
||||||
|
final override Expr getBegin() { toGenerated(result) = g.getBegin() }
|
||||||
|
|
||||||
|
final override Expr getEnd() { toGenerated(result) = g.getEnd() }
|
||||||
|
|
||||||
|
final override predicate isInclusive() { g instanceof @ruby_range_dotdot }
|
||||||
|
|
||||||
|
final override predicate isExclusive() { g instanceof @ruby_range_dotdotdot }
|
||||||
|
}
|
||||||
|
|
||||||
|
class RangeLiteralSynth extends RangeLiteral, TRangeLiteralSynth {
|
||||||
|
private boolean inclusive;
|
||||||
|
|
||||||
|
RangeLiteralSynth() { this = TRangeLiteralSynth(_, _, inclusive) }
|
||||||
|
|
||||||
|
final override Expr getBegin() { result = TIntegerLiteralSynth(this, 0, _) }
|
||||||
|
|
||||||
|
final override Expr getEnd() { result = TIntegerLiteralSynth(this, 1, _) }
|
||||||
|
|
||||||
|
final override predicate isInclusive() { inclusive = true }
|
||||||
|
|
||||||
|
final override predicate isExclusive() { inclusive = false }
|
||||||
|
}
|
||||||
|
|
||||||
|
private string getMethodName(MethodName::Token t) {
|
||||||
|
result = t.(Ruby::Token).getValue()
|
||||||
|
or
|
||||||
|
result = t.(Ruby::Setter).getName().getValue() + "="
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RequiredMethodNameConstantValue extends RequiredConstantValue {
|
||||||
|
override predicate requiredString(string s) { s = getMethodName(_) }
|
||||||
|
}
|
||||||
|
|
||||||
|
class TokenMethodName extends MethodName, TTokenMethodName {
|
||||||
|
private MethodName::Token g;
|
||||||
|
|
||||||
|
TokenMethodName() { this = TTokenMethodName(g) }
|
||||||
|
|
||||||
|
final override ConstantValue::ConstantStringValue getConstantValue() {
|
||||||
|
result.isString(getMethodName(g))
|
||||||
|
}
|
||||||
|
|
||||||
|
final override string toString() { result = getMethodName(g) }
|
||||||
|
}
|
||||||
@@ -794,14 +794,13 @@ private module ArrayLiteralDesugar {
|
|||||||
exists(ArrayLiteral al |
|
exists(ArrayLiteral al |
|
||||||
parent = al and
|
parent = al and
|
||||||
i = -1 and
|
i = -1 and
|
||||||
child = SynthChild(MethodCallKind("[]", false, al.getNumberOfElements() + 1))
|
child = SynthChild(MethodCallKind("[]", false, al.getNumberOfElements()))
|
||||||
or
|
or
|
||||||
exists(AstNode mc | mc = TMethodCallSynth(al, -1, _, _, _) |
|
parent = TMethodCallSynth(al, -1, _, _, _) and
|
||||||
parent = mc and
|
(
|
||||||
i = 0 and
|
i = 0 and
|
||||||
child = SynthChild(ConstantReadAccessKind("::Array"))
|
child = SynthChild(ConstantReadAccessKind("::Array"))
|
||||||
or
|
or
|
||||||
parent = mc and
|
|
||||||
child = childRef(al.getElement(i - 1))
|
child = childRef(al.getElement(i - 1))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -825,13 +824,56 @@ private module ArrayLiteralDesugar {
|
|||||||
final override predicate methodCall(string name, boolean setter, int arity) {
|
final override predicate methodCall(string name, boolean setter, int arity) {
|
||||||
name = "[]" and
|
name = "[]" and
|
||||||
setter = false and
|
setter = false and
|
||||||
arity = any(ArrayLiteral al).getNumberOfElements() + 1
|
arity = any(ArrayLiteral al).getNumberOfElements()
|
||||||
}
|
}
|
||||||
|
|
||||||
final override predicate constantReadAccess(string name) { name = "::Array" }
|
final override predicate constantReadAccess(string name) { name = "::Array" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private module HashLiteralDesugar {
|
||||||
|
pragma[nomagic]
|
||||||
|
private predicate hashLiteralSynthesis(AstNode parent, int i, Child child) {
|
||||||
|
exists(HashLiteral hl |
|
||||||
|
parent = hl and
|
||||||
|
i = -1 and
|
||||||
|
child = SynthChild(MethodCallKind("[]", false, hl.getNumberOfElements()))
|
||||||
|
or
|
||||||
|
parent = TMethodCallSynth(hl, -1, _, _, _) and
|
||||||
|
(
|
||||||
|
i = 0 and
|
||||||
|
child = SynthChild(ConstantReadAccessKind("::Hash"))
|
||||||
|
or
|
||||||
|
child = childRef(hl.getElement(i - 1))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ```rb
|
||||||
|
* { a: 1, **splat, b: 2 }
|
||||||
|
* ```
|
||||||
|
* desugars to
|
||||||
|
*
|
||||||
|
* ```rb
|
||||||
|
* ::Hash.[](a: 1, **splat, b: 2)
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
private class HashLiteralSynthesis extends Synthesis {
|
||||||
|
final override predicate child(AstNode parent, int i, Child child) {
|
||||||
|
hashLiteralSynthesis(parent, i, child)
|
||||||
|
}
|
||||||
|
|
||||||
|
final override predicate methodCall(string name, boolean setter, int arity) {
|
||||||
|
name = "[]" and
|
||||||
|
setter = false and
|
||||||
|
arity = any(HashLiteral hl).getNumberOfElements()
|
||||||
|
}
|
||||||
|
|
||||||
|
final override predicate constantReadAccess(string name) { name = "::Hash" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ```rb
|
* ```rb
|
||||||
* for x in xs
|
* for x in xs
|
||||||
|
|||||||
@@ -484,6 +484,9 @@ module ExprNodes {
|
|||||||
/** Gets the `n`th argument of this call. */
|
/** Gets the `n`th argument of this call. */
|
||||||
final ExprCfgNode getArgument(int n) { e.hasCfgChild(e.getArgument(n), this, result) }
|
final ExprCfgNode getArgument(int n) { e.hasCfgChild(e.getArgument(n), this, result) }
|
||||||
|
|
||||||
|
/** Gets an argument of this call. */
|
||||||
|
final ExprCfgNode getAnArgument() { result = this.getArgument(_) }
|
||||||
|
|
||||||
/** Gets the the keyword argument whose key is `keyword` of this call. */
|
/** Gets the the keyword argument whose key is `keyword` of this call. */
|
||||||
final ExprCfgNode getKeywordArgument(string keyword) {
|
final ExprCfgNode getKeywordArgument(string keyword) {
|
||||||
exists(PairCfgNode n |
|
exists(PairCfgNode n |
|
||||||
@@ -940,4 +943,39 @@ module ExprNodes {
|
|||||||
|
|
||||||
final override ElementReference getExpr() { result = super.getExpr() }
|
final override ElementReference getExpr() { result = super.getExpr() }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A control-flow node that wraps an array literal. Array literals are desugared
|
||||||
|
* into calls to `Array.[]`, so this includes both desugared calls as well as
|
||||||
|
* explicit calls.
|
||||||
|
*/
|
||||||
|
class ArrayLiteralCfgNode extends MethodCallCfgNode {
|
||||||
|
ArrayLiteralCfgNode() {
|
||||||
|
exists(ConstantReadAccess array |
|
||||||
|
array = this.getReceiver().getExpr() and
|
||||||
|
e.(MethodCall).getMethodName() = "[]" and
|
||||||
|
array.getName() = "Array" and
|
||||||
|
array.hasGlobalScope()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A control-flow node that wraps a hash literal. Hash literals are desugared
|
||||||
|
* into calls to `Hash.[]`, so this includes both desugared calls as well as
|
||||||
|
* explicit calls.
|
||||||
|
*/
|
||||||
|
class HashLiteralCfgNode extends MethodCallCfgNode {
|
||||||
|
HashLiteralCfgNode() {
|
||||||
|
exists(ConstantReadAccess array |
|
||||||
|
array = this.getReceiver().getExpr() and
|
||||||
|
e.(MethodCall).getMethodName() = "[]" and
|
||||||
|
array.getName() = "Hash" and
|
||||||
|
array.hasGlobalScope()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Gets a pair of this hash literal. */
|
||||||
|
PairCfgNode getAKeyValuePair() { result = this.getAnArgument() }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -986,10 +986,6 @@ module Trees {
|
|||||||
|
|
||||||
private class GlobalVariableTree extends LeafTree, GlobalVariableAccess { }
|
private class GlobalVariableTree extends LeafTree, GlobalVariableAccess { }
|
||||||
|
|
||||||
private class HashLiteralTree extends StandardPostOrderTree, HashLiteral {
|
|
||||||
final override ControlFlowTree getChildElement(int i) { result = this.getElement(i) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private class HashSplatNilParameterTree extends LeafTree, HashSplatNilParameter { }
|
private class HashSplatNilParameterTree extends LeafTree, HashSplatNilParameter { }
|
||||||
|
|
||||||
private class HashSplatParameterTree extends NonDefaultValueParameterTree, HashSplatParameter { }
|
private class HashSplatParameterTree extends NonDefaultValueParameterTree, HashSplatParameter { }
|
||||||
|
|||||||
@@ -278,16 +278,9 @@ private DataFlow::LocalSourceNode trackInstance(Module tp, TypeTracker t) {
|
|||||||
or
|
or
|
||||||
result.asExpr().getExpr() instanceof StringlikeLiteral and tp = TResolved("String")
|
result.asExpr().getExpr() instanceof StringlikeLiteral and tp = TResolved("String")
|
||||||
or
|
or
|
||||||
exists(ConstantReadAccess array, MethodCall mc |
|
result.asExpr() instanceof CfgNodes::ExprNodes::ArrayLiteralCfgNode and tp = TResolved("Array")
|
||||||
result.asExpr().getExpr() = mc and
|
|
||||||
mc.getMethodName() = "[]" and
|
|
||||||
mc.getReceiver() = array and
|
|
||||||
array.getName() = "Array" and
|
|
||||||
array.hasGlobalScope() and
|
|
||||||
tp = TResolved("Array")
|
|
||||||
)
|
|
||||||
or
|
or
|
||||||
result.asExpr().getExpr() instanceof HashLiteral and tp = TResolved("Hash")
|
result.asExpr() instanceof CfgNodes::ExprNodes::HashLiteralCfgNode and tp = TResolved("Hash")
|
||||||
or
|
or
|
||||||
result.asExpr().getExpr() instanceof MethodBase and tp = TResolved("Symbol")
|
result.asExpr().getExpr() instanceof MethodBase and tp = TResolved("Symbol")
|
||||||
or
|
or
|
||||||
|
|||||||
@@ -52,14 +52,15 @@ private class LibXmlRubyXmlParserCall extends XmlParserCall::Range, DataFlow::Ca
|
|||||||
override DataFlow::Node getInput() { result = this.getArgument(0) }
|
override DataFlow::Node getInput() { result = this.getArgument(0) }
|
||||||
|
|
||||||
override predicate externalEntitiesEnabled() {
|
override predicate externalEntitiesEnabled() {
|
||||||
exists(Pair pair |
|
exists(CfgNodes::ExprNodes::PairCfgNode pair |
|
||||||
pair = this.getArgument(1).asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
pair =
|
||||||
|
this.getArgument(1).asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
pair.getKey().getConstantValue().isStringOrSymbol("options") and
|
pair.getKey().getConstantValue().isStringOrSymbol("options") and
|
||||||
pair.getValue() =
|
pair.getValue() =
|
||||||
[
|
[
|
||||||
trackEnableFeature(TNOENT()), trackEnableFeature(TDTDLOAD()),
|
trackEnableFeature(TNOENT()), trackEnableFeature(TDTDLOAD()),
|
||||||
trackDisableFeature(TNONET())
|
trackDisableFeature(TNONET())
|
||||||
].asExpr().getExpr()
|
].asExpr()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
|
|
||||||
@@ -91,16 +92,16 @@ class ExconHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
predicate argSetsVerifyPeer(DataFlow::Node arg, boolean value, DataFlow::Node kvNode) {
|
predicate argSetsVerifyPeer(DataFlow::Node arg, boolean value, DataFlow::Node kvNode) {
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// Excon.get(..., ssl_verify_peer: false)
|
// Excon.get(..., ssl_verify_peer: false)
|
||||||
isSslVerifyPeerPair(arg.asExpr().getExpr(), value) and
|
isSslVerifyPeerPair(arg.asExpr(), value) and
|
||||||
kvNode = arg
|
kvNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// Excon.get(..., { ssl_verify_peer: false, ... })
|
// Excon.get(..., { ssl_verify_peer: false, ... })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isSslVerifyPeerPair(p, value) and
|
isSslVerifyPeerPair(p, value) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
kvNode.asExpr().getExpr() = p
|
kvNode.asExpr() = p
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -133,10 +134,10 @@ private predicate hasBooleanValue(DataFlow::Node node, boolean value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Holds if `p` is the pair `ssl_verify_peer: <value>`. */
|
/** Holds if `p` is the pair `ssl_verify_peer: <value>`. */
|
||||||
private predicate isSslVerifyPeerPair(Pair p, boolean value) {
|
private predicate isSslVerifyPeerPair(CfgNodes::ExprNodes::PairCfgNode p, boolean value) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node valueNode |
|
exists(DataFlow::Node key, DataFlow::Node valueNode |
|
||||||
key.asExpr().getExpr() = p.getKey() and valueNode.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
valueNode.asExpr() = p.getValue() and
|
||||||
isSslVerifyPeerLiteral(key) and
|
isSslVerifyPeerLiteral(key) and
|
||||||
hasBooleanValue(valueNode, value)
|
hasBooleanValue(valueNode, value)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
|
|
||||||
@@ -56,16 +57,16 @@ class FaradayHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
|
|
|
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// Faraday.new(..., ssl: {...})
|
// Faraday.new(..., ssl: {...})
|
||||||
isSslOptionsPairDisablingValidation(arg.asExpr().getExpr()) and
|
isSslOptionsPairDisablingValidation(arg.asExpr()) and
|
||||||
disablingNode = arg
|
disablingNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// Faraday.new(..., { ssl: {...} })
|
// Faraday.new(..., { ssl: {...} })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isSslOptionsPairDisablingValidation(p) and
|
isSslOptionsPairDisablingValidation(p) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
disablingNode.asExpr().getExpr() = p
|
disablingNode.asExpr() = p
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -78,10 +79,10 @@ class FaradayHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
* containing either `verify: false` or
|
* containing either `verify: false` or
|
||||||
* `verify_mode: OpenSSL::SSL::VERIFY_NONE`.
|
* `verify_mode: OpenSSL::SSL::VERIFY_NONE`.
|
||||||
*/
|
*/
|
||||||
private predicate isSslOptionsPairDisablingValidation(Pair p) {
|
private predicate isSslOptionsPairDisablingValidation(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isSymbolLiteral(key, "ssl") and
|
isSymbolLiteral(key, "ssl") and
|
||||||
(isHashWithVerifyFalse(value) or isHashWithVerifyModeNone(value))
|
(isHashWithVerifyFalse(value) or isHashWithVerifyModeNone(value))
|
||||||
)
|
)
|
||||||
@@ -101,7 +102,7 @@ private predicate isSymbolLiteral(DataFlow::Node node, string valueText) {
|
|||||||
*/
|
*/
|
||||||
private predicate isHashWithVerifyFalse(DataFlow::Node node) {
|
private predicate isHashWithVerifyFalse(DataFlow::Node node) {
|
||||||
exists(DataFlow::LocalSourceNode hash |
|
exists(DataFlow::LocalSourceNode hash |
|
||||||
isVerifyFalsePair(hash.asExpr().getExpr().(HashLiteral).getAKeyValuePair()) and
|
isVerifyFalsePair(hash.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair()) and
|
||||||
hash.flowsTo(node)
|
hash.flowsTo(node)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -112,7 +113,7 @@ private predicate isHashWithVerifyFalse(DataFlow::Node node) {
|
|||||||
*/
|
*/
|
||||||
private predicate isHashWithVerifyModeNone(DataFlow::Node node) {
|
private predicate isHashWithVerifyModeNone(DataFlow::Node node) {
|
||||||
exists(DataFlow::LocalSourceNode hash |
|
exists(DataFlow::LocalSourceNode hash |
|
||||||
isVerifyModeNonePair(hash.asExpr().getExpr().(HashLiteral).getAKeyValuePair()) and
|
isVerifyModeNonePair(hash.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair()) and
|
||||||
hash.flowsTo(node)
|
hash.flowsTo(node)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -121,10 +122,10 @@ private predicate isHashWithVerifyModeNone(DataFlow::Node node) {
|
|||||||
* Holds if the pair `p` has the key `:verify_mode` and the value
|
* Holds if the pair `p` has the key `:verify_mode` and the value
|
||||||
* `OpenSSL::SSL::VERIFY_NONE`.
|
* `OpenSSL::SSL::VERIFY_NONE`.
|
||||||
*/
|
*/
|
||||||
private predicate isVerifyModeNonePair(Pair p) {
|
private predicate isVerifyModeNonePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isSymbolLiteral(key, "verify_mode") and
|
isSymbolLiteral(key, "verify_mode") and
|
||||||
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
||||||
)
|
)
|
||||||
@@ -133,10 +134,10 @@ private predicate isVerifyModeNonePair(Pair p) {
|
|||||||
/**
|
/**
|
||||||
* Holds if the pair `p` has the key `:verify` and the value `false`.
|
* Holds if the pair `p` has the key `:verify` and the value `false`.
|
||||||
*/
|
*/
|
||||||
private predicate isVerifyFalsePair(Pair p) {
|
private predicate isVerifyFalsePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isSymbolLiteral(key, "verify") and
|
isSymbolLiteral(key, "verify") and
|
||||||
isFalse(value)
|
isFalse(value)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
|
|
||||||
@@ -48,20 +49,21 @@ class HttpartyRequest extends HTTP::Client::Request::Range {
|
|||||||
// argument, and we're looking for `{ verify: false }` or
|
// argument, and we're looking for `{ verify: false }` or
|
||||||
// `{ verify_peer: false }`.
|
// `{ verify_peer: false }`.
|
||||||
exists(DataFlow::Node arg, int i |
|
exists(DataFlow::Node arg, int i |
|
||||||
i > 0 and arg.asExpr().getExpr() = requestUse.asExpr().getExpr().(MethodCall).getArgument(i)
|
i > 0 and
|
||||||
|
arg.asExpr() = requestUse.asExpr().(CfgNodes::ExprNodes::MethodCallCfgNode).getArgument(i)
|
||||||
|
|
|
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// HTTParty.get(..., verify: false)
|
// HTTParty.get(..., verify: false)
|
||||||
isVerifyFalsePair(arg.asExpr().getExpr()) and
|
isVerifyFalsePair(arg.asExpr()) and
|
||||||
disablingNode = arg
|
disablingNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// HTTParty.get(..., { verify: false, ... })
|
// HTTParty.get(..., { verify: false, ... })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isVerifyFalsePair(p) and
|
isVerifyFalsePair(p) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
disablingNode.asExpr().getExpr() = p
|
disablingNode.asExpr() = p
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -88,10 +90,10 @@ private predicate isFalse(DataFlow::Node node) {
|
|||||||
/**
|
/**
|
||||||
* Holds if `p` is the pair `verify: false` or `verify_peer: false`.
|
* Holds if `p` is the pair `verify: false` or `verify_peer: false`.
|
||||||
*/
|
*/
|
||||||
private predicate isVerifyFalsePair(Pair p) {
|
private predicate isVerifyFalsePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isVerifyLiteral(key) and
|
isVerifyLiteral(key) and
|
||||||
isFalse(value)
|
isFalse(value)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
private import codeql.ruby.frameworks.StandardLibrary
|
private import codeql.ruby.frameworks.StandardLibrary
|
||||||
@@ -32,8 +33,7 @@ class OpenUriRequest extends HTTP::Client::Request::Range {
|
|||||||
|
|
||||||
override predicate disablesCertificateValidation(DataFlow::Node disablingNode) {
|
override predicate disablesCertificateValidation(DataFlow::Node disablingNode) {
|
||||||
exists(DataFlow::Node arg |
|
exists(DataFlow::Node arg |
|
||||||
arg.asExpr().getExpr() = requestUse.asExpr().getExpr().(MethodCall).getArgument(_)
|
arg.asExpr() = requestUse.asExpr().(CfgNodes::ExprNodes::MethodCallCfgNode).getAnArgument() and
|
||||||
|
|
|
||||||
argumentDisablesValidation(arg, disablingNode)
|
argumentDisablesValidation(arg, disablingNode)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -68,8 +68,7 @@ class OpenUriKernelOpenRequest extends HTTP::Client::Request::Range {
|
|||||||
override predicate disablesCertificateValidation(DataFlow::Node disablingNode) {
|
override predicate disablesCertificateValidation(DataFlow::Node disablingNode) {
|
||||||
exists(DataFlow::Node arg, int i |
|
exists(DataFlow::Node arg, int i |
|
||||||
i > 0 and
|
i > 0 and
|
||||||
arg.asExpr().getExpr() = requestUse.asExpr().getExpr().(MethodCall).getArgument(i)
|
arg.asExpr() = requestUse.asExpr().(CfgNodes::ExprNodes::MethodCallCfgNode).getArgument(i) and
|
||||||
|
|
|
||||||
argumentDisablesValidation(arg, disablingNode)
|
argumentDisablesValidation(arg, disablingNode)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -85,24 +84,24 @@ class OpenUriKernelOpenRequest extends HTTP::Client::Request::Range {
|
|||||||
private predicate argumentDisablesValidation(DataFlow::Node arg, DataFlow::Node disablingNode) {
|
private predicate argumentDisablesValidation(DataFlow::Node arg, DataFlow::Node disablingNode) {
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// URI.open(..., ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE)
|
// URI.open(..., ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE)
|
||||||
isSslVerifyModeNonePair(arg.asExpr().getExpr()) and
|
isSslVerifyModeNonePair(arg.asExpr()) and
|
||||||
disablingNode = arg
|
disablingNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// URI.open(..., { ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE, ... })
|
// URI.open(..., { ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE, ... })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isSslVerifyModeNonePair(p) and
|
isSslVerifyModeNonePair(p) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
disablingNode.asExpr().getExpr() = p
|
disablingNode.asExpr() = p
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Holds if `p` is the pair `ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE`. */
|
/** Holds if `p` is the pair `ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE`. */
|
||||||
private predicate isSslVerifyModeNonePair(Pair p) {
|
private predicate isSslVerifyModeNonePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isSslVerifyModeLiteral(key) and
|
isSslVerifyModeLiteral(key) and
|
||||||
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
|
|
||||||
@@ -50,16 +51,16 @@ class RestClientHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
|
|
|
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// RestClient::Resource.new(..., verify_ssl: OpenSSL::SSL::VERIFY_NONE)
|
// RestClient::Resource.new(..., verify_ssl: OpenSSL::SSL::VERIFY_NONE)
|
||||||
isVerifySslNonePair(arg.asExpr().getExpr()) and
|
isVerifySslNonePair(arg.asExpr()) and
|
||||||
disablingNode = arg
|
disablingNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// RestClient::Resource.new(..., { verify_ssl: OpenSSL::SSL::VERIFY_NONE })
|
// RestClient::Resource.new(..., { verify_ssl: OpenSSL::SSL::VERIFY_NONE })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isVerifySslNonePair(p) and
|
isVerifySslNonePair(p) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
disablingNode.asExpr().getExpr() = p
|
disablingNode.asExpr() = p
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -68,10 +69,10 @@ class RestClientHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Holds if `p` is the pair `verify_ssl: OpenSSL::SSL::VERIFY_NONE`. */
|
/** Holds if `p` is the pair `verify_ssl: OpenSSL::SSL::VERIFY_NONE`. */
|
||||||
private predicate isVerifySslNonePair(Pair p) {
|
private predicate isVerifySslNonePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and value.asExpr().getExpr() = p.getValue()
|
key.asExpr() = p.getKey() and
|
||||||
|
|
value.asExpr() = p.getValue() and
|
||||||
isSslVerifyModeLiteral(key) and
|
isSslVerifyModeLiteral(key) and
|
||||||
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
value = API::getTopLevelMember("OpenSSL").getMember("SSL").getMember("VERIFY_NONE").getAUse()
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
private import ruby
|
private import ruby
|
||||||
|
private import codeql.ruby.CFG
|
||||||
private import codeql.ruby.Concepts
|
private import codeql.ruby.Concepts
|
||||||
private import codeql.ruby.ApiGraphs
|
private import codeql.ruby.ApiGraphs
|
||||||
|
|
||||||
@@ -31,16 +32,16 @@ class TyphoeusHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
|
|
|
|
||||||
// Either passed as an individual key:value argument, e.g.:
|
// Either passed as an individual key:value argument, e.g.:
|
||||||
// Typhoeus.get(..., ssl_verifypeer: false)
|
// Typhoeus.get(..., ssl_verifypeer: false)
|
||||||
isSslVerifyPeerFalsePair(arg.asExpr().getExpr()) and
|
isSslVerifyPeerFalsePair(arg.asExpr()) and
|
||||||
disablingNode = arg
|
disablingNode = arg
|
||||||
or
|
or
|
||||||
// Or as a single hash argument, e.g.:
|
// Or as a single hash argument, e.g.:
|
||||||
// Typhoeus.get(..., { ssl_verifypeer: false, ... })
|
// Typhoeus.get(..., { ssl_verifypeer: false, ... })
|
||||||
exists(DataFlow::LocalSourceNode optionsNode, Pair p |
|
exists(DataFlow::LocalSourceNode optionsNode, CfgNodes::ExprNodes::PairCfgNode p |
|
||||||
p = optionsNode.asExpr().getExpr().(HashLiteral).getAKeyValuePair() and
|
p = optionsNode.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair() and
|
||||||
isSslVerifyPeerFalsePair(p) and
|
isSslVerifyPeerFalsePair(p) and
|
||||||
optionsNode.flowsTo(arg) and
|
optionsNode.flowsTo(arg) and
|
||||||
disablingNode.asExpr().getExpr() = p
|
disablingNode.asExpr() = p
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -49,11 +50,10 @@ class TyphoeusHttpRequest extends HTTP::Client::Request::Range {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Holds if `p` is the pair `ssl_verifypeer: false`. */
|
/** Holds if `p` is the pair `ssl_verifypeer: false`. */
|
||||||
private predicate isSslVerifyPeerFalsePair(Pair p) {
|
private predicate isSslVerifyPeerFalsePair(CfgNodes::ExprNodes::PairCfgNode p) {
|
||||||
exists(DataFlow::Node key, DataFlow::Node value |
|
exists(DataFlow::Node key, DataFlow::Node value |
|
||||||
key.asExpr().getExpr() = p.getKey() and
|
key.asExpr() = p.getKey() and
|
||||||
value.asExpr().getExpr() = p.getValue()
|
value.asExpr() = p.getValue() and
|
||||||
|
|
|
||||||
isSslVerifyPeerLiteral(key) and
|
isSslVerifyPeerLiteral(key) and
|
||||||
isFalse(value)
|
isFalse(value)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -73,12 +73,12 @@ module UnsafeDeserialization {
|
|||||||
result = "object" and isSafe = false
|
result = "object" and isSafe = false
|
||||||
}
|
}
|
||||||
|
|
||||||
private predicate isOjModePair(Pair p, string modeValue) {
|
private predicate isOjModePair(CfgNodes::ExprNodes::PairCfgNode p, string modeValue) {
|
||||||
p.getKey().getConstantValue().isStringOrSymbol("mode") and
|
p.getKey().getConstantValue().isStringOrSymbol("mode") and
|
||||||
exists(DataFlow::LocalSourceNode symbolLiteral, DataFlow::Node value |
|
exists(DataFlow::LocalSourceNode symbolLiteral, DataFlow::Node value |
|
||||||
symbolLiteral.asExpr().getExpr().getConstantValue().isSymbol(modeValue) and
|
symbolLiteral.asExpr().getExpr().getConstantValue().isSymbol(modeValue) and
|
||||||
symbolLiteral.flowsTo(value) and
|
symbolLiteral.flowsTo(value) and
|
||||||
value.asExpr().getExpr() = p.getValue()
|
value.asExpr() = p.getValue()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -91,7 +91,8 @@ module UnsafeDeserialization {
|
|||||||
OjOptionsHashWithModeKey() {
|
OjOptionsHashWithModeKey() {
|
||||||
exists(DataFlow::LocalSourceNode options |
|
exists(DataFlow::LocalSourceNode options |
|
||||||
options.flowsTo(this) and
|
options.flowsTo(this) and
|
||||||
isOjModePair(options.asExpr().getExpr().(HashLiteral).getAKeyValuePair(), modeValue)
|
isOjModePair(options.asExpr().(CfgNodes::ExprNodes::HashLiteralCfgNode).getAKeyValuePair(),
|
||||||
|
modeValue)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,7 +144,7 @@ module UnsafeDeserialization {
|
|||||||
exists(DataFlow::Node arg, int i | i >= 1 and arg = this.getArgument(i) |
|
exists(DataFlow::Node arg, int i | i >= 1 and arg = this.getArgument(i) |
|
||||||
arg.(OjOptionsHashWithModeKey).hasKnownMode(isSafe)
|
arg.(OjOptionsHashWithModeKey).hasKnownMode(isSafe)
|
||||||
or
|
or
|
||||||
isOjModePair(arg.asExpr().getExpr(), getAKnownOjModeName(isSafe))
|
isOjModePair(arg.asExpr(), getAKnownOjModeName(isSafe))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,6 +47,19 @@ calls/calls.rb:
|
|||||||
# 230| getReceiver: [ConstantReadAccess] X
|
# 230| getReceiver: [ConstantReadAccess] X
|
||||||
# 229| getReceiver: [MethodCall] call to bar
|
# 229| getReceiver: [MethodCall] call to bar
|
||||||
# 229| getReceiver: [ConstantReadAccess] X
|
# 229| getReceiver: [ConstantReadAccess] X
|
||||||
|
# 249| [HashLiteral] {...}
|
||||||
|
# 249| getDesugared: [MethodCall] call to []
|
||||||
|
# 249| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 249| getArgument: [Pair] Pair
|
||||||
|
# 249| getKey: [MethodCall] call to foo
|
||||||
|
# 249| getReceiver: [Self, SelfVariableAccess] self
|
||||||
|
# 249| getValue: [MethodCall] call to bar
|
||||||
|
# 249| getReceiver: [Self, SelfVariableAccess] self
|
||||||
|
# 249| getArgument: [Pair] Pair
|
||||||
|
# 249| getKey: [MethodCall] call to foo
|
||||||
|
# 249| getReceiver: [ConstantReadAccess] X
|
||||||
|
# 249| getValue: [MethodCall] call to bar
|
||||||
|
# 249| getReceiver: [ConstantReadAccess] X
|
||||||
# 314| [AssignExpr] ... = ...
|
# 314| [AssignExpr] ... = ...
|
||||||
# 314| getDesugared: [StmtSequence] ...
|
# 314| getDesugared: [StmtSequence] ...
|
||||||
# 314| getStmt: [SetterMethodCall] call to foo=
|
# 314| getStmt: [SetterMethodCall] call to foo=
|
||||||
@@ -292,6 +305,13 @@ constants/constants.rb:
|
|||||||
# 20| getArgument: [StringLiteral] "Dave"
|
# 20| getArgument: [StringLiteral] "Dave"
|
||||||
# 20| getComponent: [StringTextComponent] Dave
|
# 20| getComponent: [StringTextComponent] Dave
|
||||||
literals/literals.rb:
|
literals/literals.rb:
|
||||||
|
# 88| [HashLiteral] {...}
|
||||||
|
# 88| getDesugared: [MethodCall] call to []
|
||||||
|
# 88| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 88| getArgument: [Pair] Pair
|
||||||
|
# 88| getKey: [SymbolLiteral] :foo
|
||||||
|
# 88| getValue: [StringLiteral] "bar"
|
||||||
|
# 88| getComponent: [StringTextComponent] bar
|
||||||
# 96| [ArrayLiteral] [...]
|
# 96| [ArrayLiteral] [...]
|
||||||
# 96| getDesugared: [MethodCall] call to []
|
# 96| getDesugared: [MethodCall] call to []
|
||||||
# 96| getReceiver: [ConstantReadAccess] Array
|
# 96| getReceiver: [ConstantReadAccess] Array
|
||||||
@@ -432,6 +452,31 @@ literals/literals.rb:
|
|||||||
# 113| getComponent: [StringTextComponent] #{BAR}
|
# 113| getComponent: [StringTextComponent] #{BAR}
|
||||||
# 113| getArgument: [SymbolLiteral] :"baz"
|
# 113| getArgument: [SymbolLiteral] :"baz"
|
||||||
# 113| getComponent: [StringTextComponent] baz
|
# 113| getComponent: [StringTextComponent] baz
|
||||||
|
# 116| [HashLiteral] {...}
|
||||||
|
# 116| getDesugared: [MethodCall] call to []
|
||||||
|
# 116| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 117| [HashLiteral] {...}
|
||||||
|
# 117| getDesugared: [MethodCall] call to []
|
||||||
|
# 117| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 117| getArgument: [Pair] Pair
|
||||||
|
# 117| getKey: [SymbolLiteral] :foo
|
||||||
|
# 117| getValue: [IntegerLiteral] 1
|
||||||
|
# 117| getArgument: [Pair] Pair
|
||||||
|
# 117| getKey: [SymbolLiteral] :bar
|
||||||
|
# 117| getValue: [IntegerLiteral] 2
|
||||||
|
# 117| getArgument: [Pair] Pair
|
||||||
|
# 117| getKey: [StringLiteral] "baz"
|
||||||
|
# 117| getComponent: [StringTextComponent] baz
|
||||||
|
# 117| getValue: [IntegerLiteral] 3
|
||||||
|
# 118| [HashLiteral] {...}
|
||||||
|
# 118| getDesugared: [MethodCall] call to []
|
||||||
|
# 118| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 118| getArgument: [Pair] Pair
|
||||||
|
# 118| getKey: [SymbolLiteral] :foo
|
||||||
|
# 118| getValue: [IntegerLiteral] 7
|
||||||
|
# 118| getArgument: [HashSplatExpr] ** ...
|
||||||
|
# 118| getAnOperand/getOperand/getReceiver: [MethodCall] call to baz
|
||||||
|
# 118| getReceiver: [Self, SelfVariableAccess] self
|
||||||
control/loops.rb:
|
control/loops.rb:
|
||||||
# 9| [ForExpr] for ... in ...
|
# 9| [ForExpr] for ... in ...
|
||||||
# 9| getDesugared: [MethodCall] call to each
|
# 9| getDesugared: [MethodCall] call to each
|
||||||
@@ -511,12 +556,14 @@ control/loops.rb:
|
|||||||
# 24| getAnOperand/getLeftOperand/getReceiver: [LocalVariableAccess] foo
|
# 24| getAnOperand/getLeftOperand/getReceiver: [LocalVariableAccess] foo
|
||||||
# 24| getAnOperand/getArgument/getRightOperand: [LocalVariableAccess] value
|
# 24| getAnOperand/getArgument/getRightOperand: [LocalVariableAccess] value
|
||||||
# 22| getReceiver: [HashLiteral] {...}
|
# 22| getReceiver: [HashLiteral] {...}
|
||||||
# 22| getElement: [Pair] Pair
|
# 22| getDesugared: [MethodCall] call to []
|
||||||
# 22| getKey: [SymbolLiteral] :foo
|
# 22| getReceiver: [ConstantReadAccess] Hash
|
||||||
# 22| getValue: [IntegerLiteral] 0
|
# 22| getArgument: [Pair] Pair
|
||||||
# 22| getElement: [Pair] Pair
|
# 22| getKey: [SymbolLiteral] :foo
|
||||||
# 22| getKey: [SymbolLiteral] :bar
|
# 22| getValue: [IntegerLiteral] 0
|
||||||
# 22| getValue: [IntegerLiteral] 1
|
# 22| getArgument: [Pair] Pair
|
||||||
|
# 22| getKey: [SymbolLiteral] :bar
|
||||||
|
# 22| getValue: [IntegerLiteral] 1
|
||||||
# 28| [ForExpr] for ... in ...
|
# 28| [ForExpr] for ... in ...
|
||||||
# 28| getDesugared: [MethodCall] call to each
|
# 28| getDesugared: [MethodCall] call to each
|
||||||
# 28| getBlock: [BraceBlock] { ... }
|
# 28| getBlock: [BraceBlock] { ... }
|
||||||
@@ -553,12 +600,14 @@ control/loops.rb:
|
|||||||
# 30| getAnOperand/getArgument/getRightOperand: [LocalVariableAccess] value
|
# 30| getAnOperand/getArgument/getRightOperand: [LocalVariableAccess] value
|
||||||
# 31| getStmt: [BreakStmt] break
|
# 31| getStmt: [BreakStmt] break
|
||||||
# 28| getReceiver: [HashLiteral] {...}
|
# 28| getReceiver: [HashLiteral] {...}
|
||||||
# 28| getElement: [Pair] Pair
|
# 28| getDesugared: [MethodCall] call to []
|
||||||
# 28| getKey: [SymbolLiteral] :foo
|
# 28| getReceiver: [ConstantReadAccess] Hash
|
||||||
# 28| getValue: [IntegerLiteral] 0
|
# 28| getArgument: [Pair] Pair
|
||||||
# 28| getElement: [Pair] Pair
|
# 28| getKey: [SymbolLiteral] :foo
|
||||||
# 28| getKey: [SymbolLiteral] :bar
|
# 28| getValue: [IntegerLiteral] 0
|
||||||
# 28| getValue: [IntegerLiteral] 1
|
# 28| getArgument: [Pair] Pair
|
||||||
|
# 28| getKey: [SymbolLiteral] :bar
|
||||||
|
# 28| getValue: [IntegerLiteral] 1
|
||||||
# 36| [AssignAddExpr] ... += ...
|
# 36| [AssignAddExpr] ... += ...
|
||||||
# 36| getDesugared: [AssignExpr] ... = ...
|
# 36| getDesugared: [AssignExpr] ... = ...
|
||||||
# 36| getAnOperand/getLeftOperand: [LocalVariableAccess] x
|
# 36| getAnOperand/getLeftOperand: [LocalVariableAccess] x
|
||||||
@@ -624,6 +673,15 @@ operations/operations.rb:
|
|||||||
# 29| getDesugared: [MethodCall] call to []
|
# 29| getDesugared: [MethodCall] call to []
|
||||||
# 29| getReceiver: [ConstantReadAccess] Array
|
# 29| getReceiver: [ConstantReadAccess] Array
|
||||||
# 29| getArgument: [IntegerLiteral] 2
|
# 29| getArgument: [IntegerLiteral] 2
|
||||||
|
# 29| [HashLiteral] {...}
|
||||||
|
# 29| getDesugared: [MethodCall] call to []
|
||||||
|
# 29| getReceiver: [ConstantReadAccess] Hash
|
||||||
|
# 29| getArgument: [Pair] Pair
|
||||||
|
# 29| getKey: [SymbolLiteral] :b
|
||||||
|
# 29| getValue: [IntegerLiteral] 4
|
||||||
|
# 29| getArgument: [Pair] Pair
|
||||||
|
# 29| getKey: [SymbolLiteral] :c
|
||||||
|
# 29| getValue: [IntegerLiteral] 5
|
||||||
# 69| [AssignAddExpr] ... += ...
|
# 69| [AssignAddExpr] ... += ...
|
||||||
# 69| getDesugared: [AssignExpr] ... = ...
|
# 69| getDesugared: [AssignExpr] ... = ...
|
||||||
# 69| getAnOperand/getLeftOperand: [LocalVariableAccess] x
|
# 69| getAnOperand/getLeftOperand: [LocalVariableAccess] x
|
||||||
@@ -721,6 +779,9 @@ operations/operations.rb:
|
|||||||
# 96| getAnOperand/getLeftOperand/getReceiver: [GlobalVariableAccess] $global_var
|
# 96| getAnOperand/getLeftOperand/getReceiver: [GlobalVariableAccess] $global_var
|
||||||
# 96| getAnOperand/getArgument/getRightOperand: [IntegerLiteral] 6
|
# 96| getAnOperand/getArgument/getRightOperand: [IntegerLiteral] 6
|
||||||
params/params.rb:
|
params/params.rb:
|
||||||
|
# 8| [HashLiteral] {...}
|
||||||
|
# 8| getDesugared: [MethodCall] call to []
|
||||||
|
# 8| getReceiver: [ConstantReadAccess] Hash
|
||||||
# 21| [ArrayLiteral] [...]
|
# 21| [ArrayLiteral] [...]
|
||||||
# 21| getDesugared: [MethodCall] call to []
|
# 21| getDesugared: [MethodCall] call to []
|
||||||
# 21| getReceiver: [ConstantReadAccess] Array
|
# 21| getReceiver: [ConstantReadAccess] Array
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ hashSplatExpr
|
|||||||
| calls.rb:274:5:274:9 | ** ... | calls.rb:274:7:274:9 | call to bar |
|
| calls.rb:274:5:274:9 | ** ... | calls.rb:274:7:274:9 | call to bar |
|
||||||
| calls.rb:275:5:275:12 | ** ... | calls.rb:275:7:275:12 | call to bar |
|
| calls.rb:275:5:275:12 | ** ... | calls.rb:275:7:275:12 | call to bar |
|
||||||
keywordArguments
|
keywordArguments
|
||||||
|
| calls.rb:249:3:249:12 | Pair | calls.rb:249:3:249:5 | call to foo | calls.rb:249:10:249:12 | call to bar |
|
||||||
|
| calls.rb:249:15:249:30 | Pair | calls.rb:249:15:249:20 | call to foo | calls.rb:249:25:249:30 | call to bar |
|
||||||
| calls.rb:278:5:278:13 | Pair | calls.rb:278:5:278:8 | :blah | calls.rb:278:11:278:13 | call to bar |
|
| calls.rb:278:5:278:13 | Pair | calls.rb:278:5:278:8 | :blah | calls.rb:278:11:278:13 | call to bar |
|
||||||
| calls.rb:279:5:279:16 | Pair | calls.rb:279:5:279:8 | :blah | calls.rb:279:11:279:16 | call to bar |
|
| calls.rb:279:5:279:16 | Pair | calls.rb:279:5:279:8 | :blah | calls.rb:279:11:279:16 | call to bar |
|
||||||
keywordArgumentsByKeyword
|
keywordArgumentsByKeyword
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ callsWithArguments
|
|||||||
| calls.rb:85:1:85:12 | ... + ... | + | 0 | calls.rb:85:7:85:12 | call to bar |
|
| calls.rb:85:1:85:12 | ... + ... | + | 0 | calls.rb:85:7:85:12 | call to bar |
|
||||||
| calls.rb:234:1:234:8 | ...[...] | [] | 0 | calls.rb:234:5:234:7 | call to bar |
|
| calls.rb:234:1:234:8 | ...[...] | [] | 0 | calls.rb:234:5:234:7 | call to bar |
|
||||||
| calls.rb:235:1:235:14 | ...[...] | [] | 0 | calls.rb:235:8:235:13 | call to bar |
|
| calls.rb:235:1:235:14 | ...[...] | [] | 0 | calls.rb:235:8:235:13 | call to bar |
|
||||||
|
| calls.rb:249:1:249:32 | call to [] | [] | 0 | calls.rb:249:3:249:12 | Pair |
|
||||||
|
| calls.rb:249:1:249:32 | call to [] | [] | 1 | calls.rb:249:15:249:30 | Pair |
|
||||||
| calls.rb:266:1:266:9 | call to foo | foo | 0 | calls.rb:266:5:266:8 | &... |
|
| calls.rb:266:1:266:9 | call to foo | foo | 0 | calls.rb:266:5:266:8 | &... |
|
||||||
| calls.rb:267:1:267:12 | call to foo | foo | 0 | calls.rb:267:5:267:11 | &... |
|
| calls.rb:267:1:267:12 | call to foo | foo | 0 | calls.rb:267:5:267:11 | &... |
|
||||||
| calls.rb:270:1:270:9 | call to foo | foo | 0 | calls.rb:270:5:270:8 | * ... |
|
| calls.rb:270:1:270:9 | call to foo | foo | 0 | calls.rb:270:5:270:8 | * ... |
|
||||||
@@ -248,6 +250,7 @@ callsWithReceiver
|
|||||||
| calls.rb:245:6:245:8 | call to bar | calls.rb:245:6:245:8 | self |
|
| calls.rb:245:6:245:8 | call to bar | calls.rb:245:6:245:8 | self |
|
||||||
| calls.rb:246:1:246:6 | call to foo | calls.rb:246:1:246:1 | X |
|
| calls.rb:246:1:246:6 | call to foo | calls.rb:246:1:246:1 | X |
|
||||||
| calls.rb:246:9:246:14 | call to bar | calls.rb:246:9:246:9 | X |
|
| calls.rb:246:9:246:14 | call to bar | calls.rb:246:9:246:9 | X |
|
||||||
|
| calls.rb:249:1:249:32 | call to [] | calls.rb:249:1:249:32 | Hash |
|
||||||
| calls.rb:249:3:249:5 | call to foo | calls.rb:249:3:249:5 | self |
|
| calls.rb:249:3:249:5 | call to foo | calls.rb:249:3:249:5 | self |
|
||||||
| calls.rb:249:10:249:12 | call to bar | calls.rb:249:10:249:12 | self |
|
| calls.rb:249:10:249:12 | call to bar | calls.rb:249:10:249:12 | self |
|
||||||
| calls.rb:249:15:249:20 | call to foo | calls.rb:249:15:249:15 | X |
|
| calls.rb:249:15:249:20 | call to foo | calls.rb:249:15:249:15 | X |
|
||||||
|
|||||||
@@ -2434,11 +2434,14 @@ cfg.rb:
|
|||||||
#-----| -> map2
|
#-----| -> map2
|
||||||
|
|
||||||
# 97| map1
|
# 97| map1
|
||||||
#-----| -> a
|
#-----| -> Hash
|
||||||
|
|
||||||
# 97| {...}
|
# 97| call to []
|
||||||
#-----| -> ... = ...
|
#-----| -> ... = ...
|
||||||
|
|
||||||
|
# 97| Hash
|
||||||
|
#-----| -> a
|
||||||
|
|
||||||
# 97| Pair
|
# 97| Pair
|
||||||
#-----| -> c
|
#-----| -> c
|
||||||
|
|
||||||
@@ -2473,7 +2476,7 @@ cfg.rb:
|
|||||||
#-----| -> f
|
#-----| -> f
|
||||||
|
|
||||||
# 97| Pair
|
# 97| Pair
|
||||||
#-----| -> {...}
|
#-----| -> call to []
|
||||||
|
|
||||||
# 97| "f"
|
# 97| "f"
|
||||||
#-----| -> Pair
|
#-----| -> Pair
|
||||||
@@ -2485,11 +2488,14 @@ cfg.rb:
|
|||||||
#-----| -> parameters
|
#-----| -> parameters
|
||||||
|
|
||||||
# 98| map2
|
# 98| map2
|
||||||
#-----| -> map1
|
#-----| -> Hash
|
||||||
|
|
||||||
# 98| {...}
|
# 98| call to []
|
||||||
#-----| -> ... = ...
|
#-----| -> ... = ...
|
||||||
|
|
||||||
|
# 98| Hash
|
||||||
|
#-----| -> map1
|
||||||
|
|
||||||
# 98| ** ...
|
# 98| ** ...
|
||||||
#-----| -> x
|
#-----| -> x
|
||||||
|
|
||||||
@@ -2512,7 +2518,7 @@ cfg.rb:
|
|||||||
#-----| -> "y"
|
#-----| -> "y"
|
||||||
|
|
||||||
# 98| ** ...
|
# 98| ** ...
|
||||||
#-----| -> {...}
|
#-----| -> call to []
|
||||||
|
|
||||||
# 98| map1
|
# 98| map1
|
||||||
#-----| -> ** ...
|
#-----| -> ** ...
|
||||||
|
|||||||
@@ -148,6 +148,12 @@ positionalArguments
|
|||||||
| cfg.rb:90:10:90:26 | call to [] | cfg.rb:90:21:90:25 | 3.4e5 |
|
| cfg.rb:90:10:90:26 | call to [] | cfg.rb:90:21:90:25 | 3.4e5 |
|
||||||
| cfg.rb:91:6:91:10 | ... > ... | cfg.rb:91:10:91:10 | 3 |
|
| cfg.rb:91:6:91:10 | ... > ... | cfg.rb:91:10:91:10 | 3 |
|
||||||
| cfg.rb:92:3:92:8 | call to puts | cfg.rb:92:8:92:8 | x |
|
| cfg.rb:92:3:92:8 | call to puts | cfg.rb:92:8:92:8 | x |
|
||||||
|
| cfg.rb:97:8:97:39 | call to [] | cfg.rb:97:10:97:19 | Pair |
|
||||||
|
| cfg.rb:97:8:97:39 | call to [] | cfg.rb:97:22:97:29 | Pair |
|
||||||
|
| cfg.rb:97:8:97:39 | call to [] | cfg.rb:97:32:97:37 | Pair |
|
||||||
|
| cfg.rb:98:8:98:36 | call to [] | cfg.rb:98:10:98:15 | ** ... |
|
||||||
|
| cfg.rb:98:8:98:36 | call to [] | cfg.rb:98:18:98:27 | Pair |
|
||||||
|
| cfg.rb:98:8:98:36 | call to [] | cfg.rb:98:30:98:35 | ** ... |
|
||||||
| cfg.rb:102:3:102:12 | call to puts | cfg.rb:102:8:102:12 | value |
|
| cfg.rb:102:3:102:12 | call to puts | cfg.rb:102:8:102:12 | value |
|
||||||
| cfg.rb:103:10:103:20 | ...[...] | cfg.rb:103:17:103:19 | key |
|
| cfg.rb:103:10:103:20 | ...[...] | cfg.rb:103:17:103:19 | key |
|
||||||
| cfg.rb:108:1:108:12 | call to puts | cfg.rb:108:6:108:12 | ( ... ) |
|
| cfg.rb:108:1:108:12 | call to puts | cfg.rb:108:6:108:12 | ( ... ) |
|
||||||
@@ -344,3 +350,4 @@ positionalArguments
|
|||||||
keywordArguments
|
keywordArguments
|
||||||
| cfg.html.erb:6:9:6:58 | call to stylesheet_link_tag | media | cfg.html.erb:6:54:6:58 | "all" |
|
| cfg.html.erb:6:9:6:58 | call to stylesheet_link_tag | media | cfg.html.erb:6:54:6:58 | "all" |
|
||||||
| cfg.html.erb:12:11:12:33 | call to link_to | id | cfg.html.erb:12:31:12:33 | "a" |
|
| cfg.html.erb:12:11:12:33 | call to link_to | id | cfg.html.erb:12:31:12:33 | "a" |
|
||||||
|
| cfg.rb:97:8:97:39 | call to [] | e | cfg.rb:97:35:97:37 | "f" |
|
||||||
|
|||||||
Reference in New Issue
Block a user