- Jul 17, 2017
-
-
Vivek Das Mohapatra authored
We'll need this for inclusion in the experimental runtime(s)
-
Vivek Das Mohapatra authored
We no longer build proxy libraries as part of libcapsule Several extra tools have been added to make setting up a libcapsule proxy library project as easy as possible. All of this is tied together by a capsule.pc meta data file.
-
Vivek Das Mohapatra authored
Also include an automake stub to make bootstrapping the project easier.
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
The script needs some changes to properly make it useful for capsule proxy libraries that are not part of the libcapsule tree.
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
If we want external build trees to be able to use our helper tools they need to be able to find them. Also build a dirconf.txt file with all the known substitutions for easier debugging (we will not ship this).
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
We will not build proxies within the libcapsule project itself, they'll be broken out and use tools published by libcapsule. In addition, we will typically build proxies for libraries from an external tree such as /host, so stock pkg-config checks wouldn't work anyway.
-
Vivek Das Mohapatra authored
All debug messages should be tunable via the CAPSULE_DEBUG env mechanism
-
Vivek Das Mohapatra authored
-
- Jul 04, 2017
-
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
This uses the same mechanism as libcapsule itself for loading symbols from non-native DSO trees (under /host by default), so can be used in the same environment as libcapsule itself is intended to operate in. Before this change the stub library tooling needed a different (and incompatible) setup to libcapsule to work.
-
Vivek Das Mohapatra authored
These are needed by both libcapsule itself and by the stub library generator tooling, so they have to live outside of libcapsule itself.
-
Vivek Das Mohapatra authored
-
- Jun 28, 2017
-
-
Vivek Das Mohapatra authored
Not encountered this bug in practice but it is potentially there and waiting for us.
-
- May 24, 2017
-
-
Vivek Das Mohapatra authored
When munging the ELF data structures from the capsule-export code path via dl_iterate_phdr, we get the dynamic section size as a callback arg so we can double-check we haven't ended up outside the memory region we expect to be working on. Unfortunately when using link_map traversal to do the same sort of thing to install wrapper functions inside the capsule we don't have this information. We were using SIZE_MAX on ELFCLASS64 to pass a "big enough" size parameter but this calculation does not work on ELFCLASS32. Rather than go out of our way to produce a bogus-but-big-enough value we now pass 0 for the size and have the called functions know that they can't do the double-check if passed a size of 0. The last entry in the dyn section should have a D_TAG of DT_NULL anyway so we'll only crash off the end of the dynamic section if the linker is broken or malicious (which is probably not worth defending against, all things considered).
-
Vivek Das Mohapatra authored
The code path that installs wrappers inside the capsule is the same as the one that scribbles capsule functions out into the rest of the application - however if we don't want to turn on noisy debug in the ELF handling paths all the time - so we cheat and turn it on around the ELF munging call from the wrap function only if DEBUG_WRAPPERS is already in the flags.
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
This was a bug in our constraint checking for DSO types. It couldn't actually trigger for x86-64/64-bit DSOs as they are the only ones which are ELFCLASS64, but once we were testing 32 bit binaries it bit us as we were unable to distinguish i386 from x32.
-
Vivek Das Mohapatra authored
Dump out the class (ELFCLASS32 vs ELFCLASS64) and the machine (eg EM_386 vs EM_X86_64) of candidate DSOs. This matters when the target file tree is multi-arch, anc can contaim different classes and machines. x86 hardware typically has 3: ELFCLASS32/EM_386 - old school i[3456]86 binary ELFCLASS64/EM_X86_64 - straightforward x86-64 binary ELFCLASS32/EM_X86_64 - x32 (32 bit word size using x86-64 registers) But we don't want to open any that don't match the category we actually are.
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
When searching the ld cache, calling dlopen etc we cannot assume that there will be a libfoo.so linkk - or that it will point to the right major version of the library. Always search for an explcit libfoo.so.X target. Value of X is automatically parsed from the arguments to libtool. X defaults to 0.
-
- May 23, 2017
-
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
Define and use some per-word-size printf format macros so our debug functions can be -Wall -Werror clean on both models.
-
Vivek Das Mohapatra authored
The r_addend member is ElfW(Sxword) in 64 bit ELF but ElfW(Sword) in 32 bit mode. This mostly doesn't matter but if we want to quash a pointer/integer size-mismatch warning we need to have a different protoype for the address offset calculator helper in each model.
-
Vivek Das Mohapatra authored
If we use the ELF64 and ELF32 _R_x macros in the relevant branches of a switch( __ELF_NATIVE_CLASS ) case statement we're guaranteed to be safe but the compiler isn't smart enough to deduce this and emits some warnings about bit shift overflows. Use #if __ELF_NATIVE_CLASS == x code selection instead.
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
- May 22, 2017
-
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
-
Vivek Das Mohapatra authored
We were on v3 or later, we're now at v2.1 or later.
-
- May 21, 2017
-
-
Vivek Das Mohapatra authored
-