-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Step 3: Your first query
You will now run a simple CodeQL query, to understand its basic concepts and get familiar with your IDE.
⌨️ Activity: Run a CodeQL query
-
Edit the file
3_function_definitions.qlwith the following contents:import cpp from Function f where f.getName() = "strlen" select f, "a function named strlen"
Don't copy / paste this code, but instead type it slowly. You will see the CodeQL auto-complete suggestions in your IDE as you type.
- After typing
fromand the first letters ofFunction, the IDE will propose a list of available classes from the CodeQL library for C/C++. This is a good way to discover what classes are available to represent standard patterns in the source code. - After typing
where f.the IDE will propose a list of available predicates that you can call on the variablef. - Type the first letters of
getName()to narrow down the list. - Move your cursor to a predicate name in the list to see its documentation. This is a good way to discover what predicates are available and what they mean.
- After typing
-
Run this query: Right-click on the query editor, then click CodeQL: Run Query.
-
Inspect the results appearing in the results panel. Click on the result hyperlinks to navigate to the corresponding locations in the U-Boot code. Do you understand what this query does? You probably guessed it! This query finds all functions with the name
strlen.
Now it's time to submit your query. You will have 2 choices to do that, and we'll explain both of them in the comments below. Once you have chosen your method, submit your answer!
Read carefully: you will need to follow the same steps to submit your answers to later steps. You can always come back to this issue later to check the submission instructions.