About

My name is Alireza Salamiabyaneh and I was a member of Computational Systems Group in the Department of Computer Sciences at the University of Salzburg. I received my Dr.techn. degree from University of Salzburg in November 2022. My main advisor was Dr. Christoph Kirsch and my co-advisor was Dr. Ana Sokolova. My research interests are in program analysis, symbolic execution, and constraint solving.

Image
Publications
  • Abstract Symbolic Execution
    PhD thesis, Department of Computer Sciences, University of Salzburg, 2022

    Symbolic execution is a program analysis technique which computes program in- puts that cause the program to enter an erroneous state such as division by zero. While executing the program a symbolic execution engine accomplishes this by constructing a Satisfiability Modulo Theory (SMT) formula for a program path to a control-flow location, referred to as path condition. The program location is reachable on that path if and only if the SMT formula is satisfiable in the theory of program expressions. An unsatisfiable formula, on the other hand, shows that the program location is unreachable for all inputs leading to that path. On a regular basis the symbolic execution engine queries an SMT solver to check the reachability of the program’s execution branches. The SMT solving, however, is often a scalability bottleneck in symbolic execution.
    In this dissertation we propose abstract symbolic execution (ASE), which is inspired by abstract interpretation, with the goal of querying the SMT solver less frequently and with easier-to-solve SMT formulae by attempting to compute reachability faster through increasingly weaker abstractions. The goal of abstract symbolic execution is to integrate abstract domains in symbolic execution and propose decision procedures which are able to detect when a precise reachability decision can be made with respect to those abstractions.
    For this purpose, we proposed a value set decision procedure based on strided value interval (SVI) sets for efficiently determining precise, under-approximating, or over-approximating value sets for variables. We designed a symbolic execution algorithm benefiting from a tiered architecture in its constraint solving component which has the SVI decision procedure as its first layer and the theory of bit-vectors as its second layer. Any reachability decision which can precisely be made by the SVI decision procedure is not queried to the SMT solver. In case when the SVI decision procedure cannot provide a precise decision the abstraction is upgraded to bit-vectors and the decision procedure in the SMT solver is used to answer the reachability query.
    When the abstraction is at the bit-vector layer, we proposed a branch prediction method as an optimization technique that predicts reachability of code to delay querying the SMT solver further. The prediction for branches are made according to the cached reachability result of their previous run in the same execution.
    We have implemented a prototype of our symbolic execution engine inside the Selfie System performing analysis on programs written in the C* programming language. The experimental evaluations of the proposed symbolic execution algorithms on a set of benchmark programs often showed an improvement in symbolic execution time.

  • ASE: A Value Set Decision Procedure for Symbolic Execution
    36th IEEE/ACM International Conference on Automated Software Engineering (ASE), 2021
    Together with Christoph M. Kirsch

    A symbolic execution engine regularly queries a Satisfiability Modulo Theory (SMT) solver to determine reachability of code during execution. Unfortunately, the SMT solver is often the bottleneck of symbolic execution. Inspired by abstract interpretation, we propose an abstract symbolic execution (ASE) engine which aims at querying the SMT solver less often by trying to compute reachability faster through an increasingly weaker abstraction. For this purpose, we have designed and implemented a value set decision procedure based on strided value interval (SVI) sets for efficiently determining precise, or under-approximating value sets for variables. Our ASE engine begins reasoning with respect to the SVI abstraction, and then only if needed uses the theory of bit-vectors implemented in SMT solvers. Our ASE engine efficiently detects when the former abstraction becomes incomplete to move on and try the next abstraction.
    We have designed and implemented a prototype of our engine for a subset of 64-bit RISC-V. Our experimental evaluation shows that our prototype often improves symbolic execution time by significantly reducing the number of SMT queries while, whenever the abstraction does not work, the overhead for trying still remains low.

  • Selfie: Towards Minimal Symbolic Execution using Modular Stride Integer Interval Domain
    Poster at the 15th International Conference on Managed Languages & Runtimes, 2018
    Together with Christoph M. Kirsch, and Clement Poncelet Sanchez

    Selfie: Towards Minimal Symbolic Execution using Modular Stride Integer Interval Domain.

  • Selfie: Towards Minimal Symbolic Execution
    MoreVMs, 2018
    Together with Simon Bauer, Christoph Kirsch, Philipp Mayer, Christian Mösl, Clement Poncelet, Sara Seidl, Ana Sokolova, and Manuel Widmoser

    Selfie is a self-contained 64-bit implementation of (1) a self-compiling compiler written in a tiny subset of C called C* targeting a tiny subset of 64-bit RISC-V called RISC-U, (2) a self-executing RISC-U emulator, and (3) a self-hosting hypervisor that virtualizes the emulated RISC-U machine. Selfie is implemented in a single 8k-line file and can compile, execute, and virtualize itself any number of times in a single invocation of the system given adequate resources. There is also a simple linker, disassembler, debugger, and profiler. Selfie has originally been developed just for educational purposes but has recently become a research platform as well. C* supports only two data types, uint64_t and uint64_t*, and RISC-U features just 14 instructions, in particular for unsigned arithmetic only, which significantly simplifies reasoning about correctness. In this paper, we report on an ongoing effort in designing and implementing a symbolic execution engine for RISC-U within selfie that is supposed to explore non-trivial parts of the system including itself. The idea is to identify the set of ingredients that are necessary to do this such as the data structures for representing traces, path conditions, and symbolic states as well as algorithms for SAT and SMT solving. The key difference to other more advanced projects is that we are interested in reasoning just about selfie, for now, and are able to change selfie if necessary, as reasoning target but also as integrated platform for compilation, (symbolic) execution, and virtualization. Since selfie generates unoptimized code we are also exploring ways to leverage our symbolic execution engine in code optimization.

  • You Can Program What You Want but You Cannot Compute What You Want
    Principles of Modeling: Essays Dedicated to Edward A. Lee on the Occasion of His 60th Birthday, Springer, 2018
    Together with Christoph M. Kirsch

    Computers are the most fascinating machines ever invented. Virtually everyone uses them in one form or another every day. However, most people only have a vague understanding of how computers work, let alone how to program them. Yet computing has become a commodity almost like energy, food, or water. The question is if the general public, for modern society to work properly, needs to understand computing better than what people generally know about, say, producing electricity or clean water. We argue that the intractability and even undecidability of so many important problems in computer science are the reason that computing is indeed different. It is the limits of computability, not just the capabilities of computers, that is the source of unbounded potential in the automation of everything. The challenge is to teach people not just programming but also how programming is the neverending process of overcoming those limits. We have developed a system called selfie that implements a self-referential compiler, emulator, and hypervisor that can compile, execute, and virtualize itself. We use selfie to teach undergraduate and graduate students computer science from first principles. In particular, we show them how self-referentiality in selfie is capability and limitation of computing at the same time. Here, we discuss ongoing early work on integrating verification technology into selfie as yet another way of exploring what computing is.

  • Energy-Efficient Scheduling for Stability-Guaranteed Embedded Control Systems
    CSI Symposium on Real-Time and Embedded Systems and Technologies (RTEST), IEEE, 2015
    Together with Mehdi Kargahi

    Stability, which is heavily dependent on the controller delays, is the main measure of performance in embedded control systems. With the increased demand for resources in such systems, energy consumption has been converted to an important issue, especially in systems with limited energy sources like batteries. Accordingly, in addition to the traditional temporal requirements in these systems, stability and economic energy usage are further demands for the design of embedded control systems. For the latter demand, dynamic voltage and frequency scaling (DVFS) is too usual, however, as this technique increases the controller delay and jitter, it may negatively impact the system stability. This paper addresses the problem of control task priority assignment as well as task-specific processor voltage/frequency assignment such that the stability be guaranteed and the energy consumption be reduced. The proposed idea considers the task execution-time variability and increases the processor frequency only when the task execution-time exceeds some threshold. Experimental results show energy-efficiency of the proposed method for embedded control systems.

Selected Talks
  • Abstract Symbolic Execution
    PhD Defense, Salzburg, Austria, November 2022
  • ASE: A Value Set Decision Procedure for Symbolic Execution
    36th IEEE/ACM International Conference on Automated Software Engineering (ASE), November 2021
  • Complete Symbolic Analysis in Selfie
    Alpine Verification Meeting (AVM), Wagrain, Austria, September 2018
  • Self-Referential Theorem Proving in Selfie
    Alpine Verification Meeting (AVM), Visegrád, Hungary, September 2017
  • Energy-efficient scheduling for stability-guaranteed embedded control systems
    CSI Symposium on Real-Time and Embedded Systems and Technologies (RTEST), October 2015