2017-04-05 15:32:36 +02:00
% // vim: set ft=tex:
2017-09-21 21:53:48 +02:00
\newglossaryentry { bbox} {
name = { busybox} ,
long = { BusyBox: The Swiss Army Knife of Embedded \gls { LX} } ,
description = { %
BusyBox combines tiny versions of many common UNIX utilities into a single small executable%
} ,
first = { \glsentrylong { bbox} }
}
2017-08-22 17:40:13 +02:00
\newglossaryentry { Rust} {
name = { Rust} ,
long = { the Rust programming language} ,
2017-09-21 21:53:48 +02:00
description = { %
2017-09-19 10:38:00 +02:00
Statically typed programming language that uses a new concept of variable ownership and reference tracking. Largely explain in \cref { context::rust} .
2017-08-22 17:40:13 +02:00
} ,
first = { \glsentrylong { Rust} }
}
\newglossaryentry { proglang} {
name = { programming language} ,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-22 17:40:13 +02:00
A well-defined language used to write software. Hundreds of language exists, each with focus on different aspects like comfort for humans, size, speed, safety, etc.
} ,
2017-04-05 18:51:02 +02:00
}
2017-08-22 17:40:13 +02:00
2017-04-05 18:51:02 +02:00
\newglossaryentry { compiler} {
name = compiler,
2017-08-22 17:40:13 +02:00
long = { source- to machine-code compiler} ,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 18:51:02 +02:00
A program that can transform software source code to executable machine code.
2017-08-22 17:40:13 +02:00
Typically targetted for a \glsentryname { proglang} or a family of \glspl { proglang} .
2017-04-05 18:51:02 +02:00
} ,
2017-08-22 17:40:13 +02:00
first = { \glsentrylong { compiler} }
2017-04-05 18:51:02 +02:00
}
\newglossaryentry { addrspace} {
2017-08-22 17:40:13 +02:00
name = address space,
long = bound address range in memory,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-22 17:40:13 +02:00
A logical entity that represents a section of memory, specified with a start address and either by end address or length given in a standardize unit
2017-04-05 18:51:02 +02:00
} ,
2017-08-22 17:40:13 +02:00
first = { \glsentrylong { addrspace} }
2017-04-05 18:51:02 +02:00
}
2017-09-11 22:54:22 +02:00
\newglossaryentry { stack} {
name = stack,
2017-09-21 21:53:48 +02:00
description = { %
2017-09-11 22:54:22 +02:00
TODO
} ,
}
2017-09-21 21:53:48 +02:00
\newglossaryentry { sf} {
name = stack-frame,
description = { %
Procedure data and meta-data (see \cref { lst:amd64-stack-frame-components} )%
} ,
}
2017-09-11 22:54:22 +02:00
\newglossaryentry { heap} {
name = heap,
2017-09-21 21:53:48 +02:00
description = { %
2017-09-11 22:54:22 +02:00
TODO
} ,
}
2017-08-22 17:40:13 +02:00
\newglossaryentry { api} {
2017-04-05 15:32:36 +02:00
name = API,
2017-08-22 17:40:13 +02:00
long = { Application Programming Interface} ,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
} ,
2017-08-22 17:40:13 +02:00
first = { \glsentrylong { api} }
2017-04-05 15:32:36 +02:00
}
2017-09-21 21:53:48 +02:00
\newglossaryentry { os} {
2017-08-22 17:40:13 +02:00
name = OS,
long = Operating System,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
The software that manages the system's hardware ressources.
2017-09-21 21:53:48 +02:00
Other \glspl { app} can access the ressources only through the interface provided by the \gls { os} .
2017-04-05 15:32:36 +02:00
} ,
2017-09-21 21:53:48 +02:00
first = { \glsentrylong { os} }
2017-04-05 15:32:36 +02:00
}
2017-08-22 17:40:13 +02:00
2017-04-05 15:32:36 +02:00
\newglossaryentry { fs} {
name = filesystem,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
\newglossaryentry { virt} {
name = virtualization,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
\newglossaryentry { OSS} {
name = Open-Source Software,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
\newglossaryentry { osvirt} {
name = Operating System-Level Virtualization,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
\newglossaryentry { hypervisor} {
name = Hypervisor,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
\newglossaryentry { VM} {
name = Virtual Machine,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
} ,
}
2017-08-31 22:31:56 +02:00
\newglossaryentry { LX} {
2017-04-05 15:32:36 +02:00
name = Linux,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
is a generic term referring to the family of Unix-like
computer operating systems that use the Linux kernel
} ,
plural=Linuces
}
2017-09-11 22:54:22 +02:00
\newglossaryentry { android} {
name = Android,
2017-09-21 21:53:48 +02:00
description = { a mobile \gls { os} based on \gls { LX} } ,
2017-09-11 22:54:22 +02:00
first = { \glsentryname { android} , \glsentrydesc { android} } ,
}
2017-08-10 19:09:58 +02:00
\newglossaryentry { imezzos} {
name = intermezzOS,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-10 19:09:58 +02:00
TODO
} ,
}
2017-08-22 10:41:12 +02:00
\newglossaryentry { redoxos} {
name = Redox OS,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-22 10:41:12 +02:00
TODO
} ,
}
\newglossaryentry { blogos} {
name = Blog OS,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-22 10:41:12 +02:00
TODO
} ,
}
\newglossaryentry { tockos} {
name = Tock OS,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-22 10:41:12 +02:00
TODO
} ,
}
2017-04-05 15:32:36 +02:00
\newglossaryentry { rootfs} {
name = RootFS,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
% TODO
} ,
}
\newglossaryentry { lxns} {
name = Linux Namespace,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
entitiy that holds a specific set of process attributes and can be set per process
} ,
}
\newglossaryentry { lxcap} {
name = Linux Capability,
2017-09-21 21:53:48 +02:00
description = { %
entitiy that holds a specific set of process attributes and can be set per process, mainly to establish a relationship between processes and \gls { os} resources
2017-04-05 15:32:36 +02:00
} ,
plural = Linux Capabilities,
}
\newglossaryentry { lxvfs} {
name = Linux VFS,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-31 22:31:56 +02:00
Virtual Filesystem Switch, a filesystem abstraction layer in \gls { LX} .
2017-04-05 15:32:36 +02:00
} ,
}
\newglossaryentry { BSD} {
name = BSD,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
TODO
}
}
\newglossaryentry { computer} {
name = Computer,
2017-09-21 21:53:48 +02:00
description = { %
2017-04-05 15:32:36 +02:00
is a programmable machine that receives input,
stores and manipulates data, and provides
output in a useful format
}
}
2017-08-31 22:31:56 +02:00
2017-04-05 15:32:36 +02:00
\newglossaryentry { pm} {
2017-09-21 21:53:48 +02:00
name = package manager,
description = { %
2017-04-05 15:32:36 +02:00
TODO
}
}
\newglossaryentry { sac} {
2017-09-21 21:53:48 +02:00
name = Software Application Container,
description = { %
2017-04-05 15:32:36 +02:00
The broad term for the technology used to build, package, distribute and run an application program in isolation from the underlying and co-existing systems, wherein the level or technique of isolation can be different depending on the \gls { sacr} .
The term is nuanced from \gls { appc} defined by the \gls { appcorg} .
The \gls { appcorg} is a community driven effort to create an open, standardized specification for developers and users of \gls { sac} technology.
Such independent standards are required to form interoperability between \gls { sac} implementations made by independent parties.
Some implementations will be subject to more detailed examination in Part \ref { part:research} .
}
}
\newglossaryentry { saci} {
2017-09-21 21:53:48 +02:00
name = Software Application Container Image,
description = { %
2017-04-05 15:32:36 +02:00
An archive file that contains all of the necessary binaries that are needed to execute an application and a manifest file that that contains metadata about the application. Alternatively to containing all the required binary files, the manifest file can declare dependencies to other application container images, which must then be available at runtime to execute the contained application.
}
}
\newglossaryentry { sacr} {
2017-09-21 21:53:48 +02:00
name = Software Application Container Runtime,
description = { %
2017-04-05 15:32:36 +02:00
An application program (suite) that understands how to run the software inside an \gls { saci} .
}
}
\newglossaryentry { LXC} {
2017-09-21 21:53:48 +02:00
name = LXC,
description = { %
2017-04-05 15:32:36 +02:00
TODO
}
}
\newglossaryentry { Docker} {
2017-09-21 21:53:48 +02:00
name = Docker,
description = { %
2017-04-05 15:32:36 +02:00
A very popular \gls { sac} platform and application suite, providing functionality to build and deploy Docker specific \glspl { saci} .
}
}
\newglossaryentry { systemd-nspawn} {
2017-09-21 21:53:48 +02:00
name = systemd-nspawn,
description = { %
2017-04-05 15:32:36 +02:00
TODO
}
}
\newglossaryentry { rkt} {
2017-09-21 21:53:48 +02:00
name = rkt,
description = { %
2017-04-05 15:32:36 +02:00
TODO
}
}
\newglossaryentry { appcorg} {
2017-09-21 21:53:48 +02:00
name = App Container Organisation,
description = { %
2017-04-05 15:32:36 +02:00
Organisation for the App Container specification, including the schema and associated tooling.
}
}
\newglossaryentry { appc} {
2017-09-21 21:53:48 +02:00
name = App Container,
description = { %
2017-08-31 22:31:56 +02:00
Specific variant of an \glsentrytext { sac} defined by the \glsentrytext { appcorg} .
2017-04-05 15:32:36 +02:00
}
}
2017-06-29 19:03:01 +02:00
2017-08-31 22:31:56 +02:00
\newglossaryentry { NVD} {
name = { NVD} ,
description = { https://nvd.nist.gov/} ,
long = { National Vulnerability Database} ,
first = { \glsentrylong { NVD} }
}
2017-06-29 19:03:01 +02:00
\newglossaryentry { CWE} {
2017-08-31 22:31:56 +02:00
name = { CWE™} ,
long = Common Weakness Enumeration,
description = { a community-developed list of common software security weaknesses. It serves as a common language, a measuring stick for software security tools, and as a baseline for weakness identification, mitigation, and prevention efforts} ,
first = { \glsentrylong { CWE} , "\glsentrydesc { CWE} "\cite { MITRE-CWE} }
}
\newglossaryentry { CWE-633} {
name = CWE-633,
description = { Weaknesses in this category affect memory resources} ,
first = { CWE-633: \glsentrydesc { CWE-633} \cite { MITRE-CWE-633} }
}
\newglossaryentry { CWE-119} {
name = CWE-119,
2017-09-19 10:38:00 +02:00
long = { CWE-119: \glsentrydesc { CWE-119} } ,
2017-08-31 22:31:56 +02:00
description = { Improper Restriction of Operations within the Bounds of a Memory Buffer} ,
2017-09-19 10:38:00 +02:00
first = { \glsentrylong { CWE-119} \cite { MITRE-CWE-119} }
2017-06-29 19:03:01 +02:00
}
2017-07-13 21:03:02 +02:00
\newglossaryentry { C} {
2017-09-21 21:53:48 +02:00
name = C,
, description = { %
2017-08-22 10:41:12 +02:00
TODO C programming language,
}
}
2017-08-31 22:31:56 +02:00
\newglossaryentry { C++} {
2017-09-21 21:53:48 +02:00
name = C++,
, description = { %
2017-08-31 22:31:56 +02:00
A \glsentrytext { proglag} based on \glsentrytext { C} , enahnced by features like object-orientation, lambdas, and much more.
}
}
2017-08-22 10:41:12 +02:00
\newglossaryentry { asm} {
2017-09-21 21:53:48 +02:00
name = Assembly programming language,
description = { %
2017-08-22 10:41:12 +02:00
TODO ASM
2017-07-13 21:03:02 +02:00
}
}
2017-08-31 22:31:56 +02:00
\newglossaryentry { amd64} {
name = AMD64,
long = AMD64,
2017-09-21 21:53:48 +02:00
description = { %
2017-08-31 22:31:56 +02:00
TODO AMD64
} ,
first = { \glsentrylong { amd64} } ,
}
2017-09-21 21:53:48 +02:00
\newglossaryentry { cpu} {
2017-08-31 22:31:56 +02:00
name = CPU,
long = Central Processing Unit,
2017-09-21 21:53:48 +02:00
description = { %
TODO cpu
} ,
first = { \glsentrylong { cpu} } ,
}
\newglossaryentry { tlb} {
name = TLB,
long = Translation Lookaside Buffer,
description = { %
TODO tlb
2017-08-31 22:31:56 +02:00
} ,
2017-09-21 21:53:48 +02:00
first = { \glsentrylong { tlb} } ,
2017-07-13 21:03:02 +02:00
}
\newglossaryentry { MMU} {
2017-08-31 22:31:56 +02:00
name = MMU,
long = Memory Management Unit,
2017-09-21 21:53:48 +02:00
description = { %
2017-07-13 21:03:02 +02:00
TODO MMU
2017-08-31 22:31:56 +02:00
} ,
first = { \glsentrylong { MMU} } ,
2017-07-13 21:03:02 +02:00
}
\newglossaryentry { sysadmin} {
2017-09-21 21:53:48 +02:00
name = System Administrator
, description = { %
2017-07-13 21:03:02 +02:00
TODO sysadmin
}
}
2017-08-22 10:41:12 +02:00
\newglossaryentry { realtime} {
2017-09-21 21:53:48 +02:00
name = realtime
, description = { %
2017-08-22 10:41:12 +02:00
TODO realtime
}
}
2017-08-31 22:31:56 +02:00
2017-09-21 21:53:48 +02:00
\newglossaryentry { app} {
name = software-application,
description = { %
A bundle of one or multiples \gls { program} intended to solve a specific use-case.
}
}
\newglossaryentry { task} {
name = task
, description = { %
Generic term for any unit of work.
In the context of this thesis, it may be used for any of \glsentrytext { program} , \glsentrytext { process} , \glsentrytext { thread} , \glsentrytext { app} .
}
}
\newglossaryentry { program} {
name = program
, description = { %
A group of instructions that can be executed by the \glsentryname { cpu} .
}
}
\newglossaryentry { process} {
name = process
, description = { %
A Program in execution.
}
}
\newglossaryentry { thread} {
name = thread
, description = { %
A defined path of instructions within a process.
It can span from a part of a procedure up to the whole program of the process.
Threads can be identified in the program code by hypothetical execution paths.
The thread can only be executed by spawning a process in such a way that the specific thread in the program will be executed, e.g. by invoking specific arguments.
}
}
\newglossaryentry { procedure} {
name = procedure
, description = { %
An addressable subgroup of instructions in a program that contains specific functionality.
}
}
\newglossaryentry { function} {
name = function
, description = { %
See Procedure.
}
}
\newglossaryentry { job} {
name = job
, description = { %
A specific unit of work, specifying one or multiple programs to execute along with the arguments to be passed to them.
}
}