VirtualBox

Changeset 68995 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Oct 6, 2017 7:46:09 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
118264
Message:

Runtime/r0drv/darwin: Don't obfuscate R0 pointers, kernel addresses are logged to the kernel log only root has access to

Location:
trunk/src/VBox/Runtime
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/Makefile.kmk

    r68948 r68995  
    21982198        generic/RTSemEventMultiWait-2-ex-generic.cpp \
    21992199        generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
    2200         generic/rtStrFormatKernelAddress-generic.cpp \
    22012200        generic/critsect-generic.cpp \
    22022201        generic/errvars-generic.cpp \
     
    22272226        generic/RTMpGetCoreCount-generic.cpp \
    22282227        generic/mppresent-generic.cpp \
     2228        generic/rtStrFormatKernelAddress-generic.cpp \
    22292229        r0drv/linux/alloc-r0drv-linux.c \
    22302230        r0drv/linux/assert-r0drv-linux.c \
     
    23572357        generic/mppresent-generic-online.cpp \
    23582358        generic/RTMpGetCoreCount-generic.cpp \
     2359        generic/rtStrFormatKernelAddress-generic.cpp \
    23592360        nt/RTErrConvertFromNtStatus.cpp \
    23602361        nt/RTNtPathExpand8dot3Path.cpp \
     
    24132414        r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
    24142415        r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
     2416        r0drv/darwin/rtStrFormatKernelAddress-r0drv-darwin.cpp \
    24152417        r0drv/darwin/semevent-r0drv-darwin.cpp \
    24162418        r0drv/darwin/semeventmulti-r0drv-darwin.cpp \
     
    25212523        generic/RTTimerCreate-generic.cpp \
    25222524        generic/mppresent-generic.cpp \
     2525        generic/rtStrFormatKernelAddress-generic.cpp \
    25232526        r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
    25242527        r0drv/generic/mpnotification-r0drv-generic.cpp \
     
    25552558        generic/RTTimerCreate-generic.cpp \
    25562559        generic/mppresent-generic.cpp \
     2560        generic/rtStrFormatKernelAddress-generic.cpp \
    25572561        r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
    25582562        r0drv/generic/mpnotification-r0drv-generic.cpp \
     
    25852589        generic/RTTimerCreate-generic.cpp \
    25862590        generic/mppresent-generic.cpp \
     2591        generic/rtStrFormatKernelAddress-generic.cpp \
    25872592        r0drv/memobj-r0drv.cpp \
    25882593        r0drv/mpnotification-r0drv.c \
     
    26212626        generic/RTTimerCreate-generic.cpp \
    26222627        generic/mppresent-generic.cpp \
     2628        generic/rtStrFormatKernelAddress-generic.cpp \
    26232629        r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
    26242630        r0drv/generic/mpnotification-r0drv-generic.cpp \
  • trunk/src/VBox/Runtime/r0drv/darwin/rtStrFormatKernelAddress-r0drv-darwin.cpp

    r68994 r68995  
    3030*********************************************************************************************************************************/
    3131#define LOG_GROUP RTLOGGROUP_STRING
    32 #include "the-linux-kernel.h"
     32#include "the-darwin-kernel.h"
    3333#include "internal/iprt.h"
    3434
     
    4242                                            signed int cchPrecision, unsigned int fFlags)
    4343{
    44 #if !defined(DEBUG) && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)
    45     RT_NOREF(cchWidth, cchPrecision);
    46     /* use the Linux kernel function which is able to handle "%pK" */
    47     static const char s_szFmt[] = "0x%pK";
    48     const char *pszFmt = s_szFmt;
    49     if (!(fFlags & RTSTR_F_SPECIAL))
    50         pszFmt += 2;
    51     return scnprintf(pszBuf, cbBuf, pszFmt, uPtr);
    52 #else
     44    /*
     45     * Kernel addresses don't need obfuscation in R0 because the kernel log is only accessible
     46     * as root.
     47     */
    5348    Assert(cbBuf >= 64);
    5449    return RTStrFormatNumber(pszBuf, uPtr, 16, cchWidth, cchPrecision, fFlags);
    55 #endif
    5650}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette