Skip to content
Snippets Groups Projects
  1. Apr 08, 2021
  2. Mar 31, 2021
  3. Mar 29, 2021
    • Jo-Philipp Wich's avatar
      ucode: update to latest Git HEAD · 0096a8df
      Jo-Philipp Wich authored
      
      aa9621d compiler: rework switch statement code generation
      b5f0de1 vm: add trace mode instruction dump output fixes
      0341d64 vm: fix another for-loop memory leak
      00d9419 vm: fix further memory leaks in trace mode
      20a3763 vm: fix loop variable memory leak in NEXTK/NEXTKV instruction
      9a6ef2b lib: prevent use-after-free after uc_shift()
      03f1324 object: free prototype object when registering existing ressource type
      b3d758b compiler: fix for/break miscompilation
      86e3970 lib: fix value refcount of uc_unshift() return value
      fe464ea run_tests.sh: allow passing tests to run as arguments
      091ae1b compiler: fix another try/catch miscompilation
      fcedb19 lib: fix passing uninitialized memory to sigprocmask()
      0d0357d vm: fix leaking source context strings in trace mode
      7a41fb3 lib: use execvp() in system()
      
      Signed-off-by: default avatarJo-Philipp Wich <jo@mein.io>
      0096a8df
  4. Mar 24, 2021
  5. Mar 19, 2021
  6. Mar 13, 2021
  7. Mar 08, 2021
    • Dominick Grift's avatar
      checkpolicy: update to version 3.2 · 49edc4d1
      Dominick Grift authored
      
      521e6a2f libsepol/cil: fix signed overflow caused by using (1 << 31) - 1
      42ae834a libsepol,checkpolicy: optimize storage of filename transitions
      
      Signed-off-by: default avatarDominick Grift <dominick.grift@defensec.nl>
      49edc4d1
    • Dominick Grift's avatar
      secilc: update to version 3.2 · 0b58ebcf
      Dominick Grift authored
      
      49ff851c secilc: fixes cil_role_statements.md example
      03881703 secilc/docs: add custom color theme
      4c8d6094 secilc/docs: add syntax highlighting for secil
      057d72af secilc/docs: use fenced code blocks for cil examples
      e8bcdb84 cil_network_labeling_statements: fixes nodecon examples
      eefa5511 cil_access_vector_rules: allowx, auditallowx and dontauditx fixes
      9e9b8103 secilc/docs: document expandtypeattribute
      fbe1e526 Update the cil docs to match the current behaviour.
      
      Signed-off-by: default avatarDominick Grift <dominick.grift@defensec.nl>
      0b58ebcf
    • Dominick Grift's avatar
      policycoreutils: update to version 3.2 · 68934a57
      Dominick Grift authored
      
      d464187c policycoreutils: sestatus belongs to bin not sbin
      d59932a7 policycoreutils: Resolve path in restorecon_xattr
      5682c0d5 policycoreutils/fixfiles.8: add missing file systems and merge check and verify
      57dd1f65 policycoreutils/setfiles: Drop unused nerr variable
      be7f54cb setfiles: drop ABORT_ON_ERRORS and related code
      9207823c setfiles: Do not abort on labeling error
      c064d214 selinux_config(5): add a note that runtime disable is deprecated
      8bc865e1 newrole: support cross-compilation with PAM and audit
      ba2d6c10 fixfiles: correctly restore context of mountpoints
      
      Signed-off-by: default avatarDominick Grift <dominick.grift@defensec.nl>
      68934a57
  8. Feb 28, 2021
  9. Feb 18, 2021
  10. Feb 16, 2021
  11. Feb 15, 2021
  12. Feb 14, 2021
    • Rosen Penev's avatar
      f2fs-tools: update to 1.14.0 · 91aa8e55
      Rosen Penev authored
      
      Fix license information.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      91aa8e55
    • Rosen Penev's avatar
      busybox: remove useless busybox patches · ce4cb8e5
      Rosen Penev authored
      
      The first two are useless as /bin/sh can execute those scripts just
      fine. Shellcheck reports no problems.
      
      Telnetd patch is useless as telnet is no longer used in OpenWrt.
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      ce4cb8e5
    • Rosen Penev's avatar
      busybox: update to 1.33 · 0275ee5d
      Rosen Penev authored
      Remove stime backport.
      
      Remove static libgcc patch as upstream fixed it with
      BUSYBOX_DEFAULT_STATIC_LIBGCC which defauls to off.
      
      Remove date -k patch as it no longer applies. It's also pointless as
      busybox' hwclock utility can do the same thing.
      
      Remove ntpd patch as that seems to have been applied upstream.
      
      Add smalll patch fixing compilation with SELinux. Upstream commit
      2496616b0a8d1c80cd1416b73a4847b59b9f969a renamed the variable without
      renaming it in the SELinux path.
      
      Refresh config and patches.
      
      Config refresh:
      
      Refresh commands, run after busybox is first built once:
      
        cd package/utils/busybox/config/
        ../convert_menuconfig.pl ../../../../build_dir/target-mips_24kc_musl/busybox-default/busybox-1.33.0
        cd ..
        ./convert_defaults.pl < ../../../build_dir/target-mips_24kc_musl/busybox-default/busybox-1.33.0/.config > Config-defaults.in
      
      Manual edits needed afterward:
      
      * Config-defaults.in:  OpenWrt config symbol IPV6 logic applied to
        BUSYBOX_DEFAULT_FEATURE_IPV6
      * Config-defaults.in:  OpenWrt configTARGET_bcm53xx logic applied to
        BUSYBOX_DEFAULT_TRUNCATE (commit 547f1ec2)
      * editors/Config.in: Add USE_GLIBC dependency to
        BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH (commit f1410902)
      * shell/Config.in : change at "Options common to all shells"  the symbol
        SHELL_ASH  -->  BUSYBOX_CONFIG_SHELL_ASH
         (discussion in http://lists.openwrt.org/pipermail/openwrt-devel/2021-January/033140.html
      
      
           Apparently our script does not see the hidden option while
           prepending config options with "BUSYBOX_CONFIG_" which leads to a
           missed dependency when the options are later evaluated.)
      * Edit Config.in files by adding quotes to sourced items in
        config/Config.in, networking/Config.in and util-linux/Config.in (commit 1da014fc)
      
      Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>
      [Added comments from Hannu Nyman to commit message]
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      0275ee5d
  13. Feb 08, 2021
  14. Jan 31, 2021
  15. Jan 27, 2021
  16. Jan 07, 2021
    • Rosen Penev's avatar
      lua: add -ldl for glibc builds · 980dca6b
      Rosen Penev authored
      
      For glibc, lua needs an explicit link to libdl as glibc has it separate
      
      Fixes the following error in at least collectd:
      
      ld: usr/lib/liblua.so: undefined reference to `dlopen'
      ld: usr/lib/liblua.so: undefined reference to `dlclose'
      ld: usr/lib/liblua.so: undefined reference to `dlerror'
      ld: usr/lib/liblua.so: undefined reference to `dlsym'
      
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      980dca6b
  17. Jan 03, 2021
  18. Dec 29, 2020
  19. Dec 16, 2020
  20. Dec 06, 2020
  21. Nov 30, 2020
  22. Nov 25, 2020
  23. Nov 12, 2020
  24. Oct 25, 2020
  25. Oct 15, 2020
  26. Oct 09, 2020
  27. Oct 01, 2020
  28. Sep 28, 2020
  29. Sep 27, 2020
  30. Sep 21, 2020
Loading