Skip to content
Snippets Groups Projects
  1. Jul 17, 2017
  2. Jul 04, 2017
  3. Jun 28, 2017
  4. May 24, 2017
    • Vivek Das Mohapatra's avatar
      capsule-dlmopen.c: don't fake dynamic section size from wrap() · 25a00ab9
      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).
      25a00ab9
    • Vivek Das Mohapatra's avatar
      capsule-dlmopen.c: when debugging WRAPPERS turn on extra debug for ELF · 687f1075
      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.
      687f1075
    • Vivek Das Mohapatra's avatar
    • Vivek Das Mohapatra's avatar
      capsule-dlmopen.c: check e_machine for DSO we're actually looking at · 47a3b768
      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.
      47a3b768
    • Vivek Das Mohapatra's avatar
      capsule-dlmopen.c: add some debug output to ELF DSO type checking · e96ef3c8
      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.
      e96ef3c8
    • Vivek Das Mohapatra's avatar
    • Vivek Das Mohapatra's avatar
      gen-stublib.sh: Include the major version of the proxied library · f8ee0abc
      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.
      f8ee0abc
  5. May 23, 2017
  6. May 22, 2017
  7. May 21, 2017
Loading