!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/src/linux-headers-6.6.116-grsec-jammy-dirty/arch/x86/include/asm/   drwxr-xr-x
Free 709.88 GB of 879.6 GB (80.71%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     jump_label.h (1.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_JUMP_LABEL_H
#define _ASM_X86_JUMP_LABEL_H

#define HAVE_JUMP_LABEL_BATCH

#include <asm/asm.h>
#include <asm/nops.h>

#ifndef __ASSEMBLY__

#include <asm/alternative.h>

#include <linux/stringify.h>
#include <linux/types.h>

#define JUMP_TABLE_ENTRY                \
    ".pushsection __jump_table,  \"aw\" \n\t"    \
    _ASM_ALIGN "\n\t"                \
    ".long 1b - . \n\t"                \
    ".long %l[l_yes] - . \n\t"            \
    _ASM_PTR "%c0 + %c1 - .\n\t"            \
    ".popsection \n\t"

#ifdef CONFIG_HAVE_JUMP_LABEL_HACK

static __always_inline bool arch_static_branch(struct static_key *key, bool branch)
{
    asm goto(RAP_SAFE_ASM "1:"
        PAX_JMP("%l[l_yes]")"; # objtool NOPs this \n\t"
        JUMP_TABLE_ENTRY
        : :  "i" (key), "i" (2 | branch) : : l_yes);

    return false;
l_yes:
    return true;
}

#else /* !CONFIG_HAVE_JUMP_LABEL_HACK */

static __always_inline bool arch_static_branch(struct static_key * const key, const bool branch)
{
    asm goto(RAP_SAFE_ASM "1:"
#ifdef CONFIG_SLS
        /* 6 byte NOP to leave room for JMP32 + INT3 */
        ".byte " __stringify(BYTES_NOP6) "\n\t"
#else
        ".byte " __stringify(BYTES_NOP5) "\n\t"
#endif
        JUMP_TABLE_ENTRY
        : :  "i" (key), "i" (branch) : : l_yes);

    return false;
l_yes:
    return true;
}

#endif /* CONFIG_HAVE_JUMP_LABEL_HACK */

static __always_inline bool arch_static_branch_jump(struct static_key * const key, const bool branch)
{
    asm goto(RAP_SAFE_ASM "1:"
        PAX_JMP("%l[l_yes]")"\n\t"
        JUMP_TABLE_ENTRY
        : :  "i" (key), "i" (branch) : : l_yes);

    return false;
l_yes:
    return true;
}

extern int arch_jump_entry_size(struct jump_entry *entry);

#endif    /* __ASSEMBLY__ */

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.4206 ]--