Step 6 - Relating two variables
github-learning-lab opened this issue · 2 comments
Step 6: Relating two variables
In step 4, you wrote a query that finds the definitions of functions named memcpy
in the codebase. Now, we want to find all the calls to memcpy
in the codebase.
One way to do this is to declare two variables: one to represent functions, and one to represent function calls. Then you will have to create a relationship between these variables in the where
section, so that they are restricted to only functions that are named memcpy
, and calls to exactly those functions.
⌨️ Activity: Find all the calls to memcpy
- Edit the file
6_memcpy_calls.ql
- Use the auto-completion feature to find the class that represents function calls, and declare a variable that belongs to this class.
- Use auto-completion again on your function call variable to guess the predicate that tells us the target function that is being called.
- Combine this with your logic from step 4 to make sure the target function is named
memcpy
. - Once you're happy with the results, submit your solution.
Tip: You can have a look at this C++ example in the CodeQL cookbook. Note that your query will be simpler as you won't need to consider the declaringType
.
Note: Once you have good results, you can try to make your query more compact by omitting the intermediate Function
variable. The 2 queries below are equivalent:
from Class1 c1, Class2 c2
where
c1.getClass2() = c2 and
c2.getProp() = "something"
select c1
from Class1 c1
where c1.getClass2().getProp() = "something"
select c1
Congratulations, looks like the query you introduced in 04c6285 finds the correct results!
If you created a pull request, merge it.
Let's continue to the next step.