!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-headers-5.15.0-1040/arch/x86/include/asm/   drwxr-xr-x
Free 83.24 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
 * This CPUID returns feature bitmaps in EAX.
 * Guest VM uses this to detect the appropriate feature bit.
 */
#define    ACRN_CPUID_FEATURES        0x40000001
/* Bit 0 indicates whether guest VM is privileged */
#define    ACRN_FEATURE_PRIVILEGED_VM    BIT(0)

void acrn_setup_intr_handler(void (*handler)(void));
void acrn_remove_intr_handler(void);

static inline u32 acrn_cpuid_base(void)
{
    if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
        return hypervisor_cpuid_base("ACRNACRNACRN", 0);

    return 0;
}

/*
 * Hypercalls for ACRN
 *
 * - VMCALL instruction is used to implement ACRN hypercalls.
 * - ACRN hypercall ABI:
 *   - Hypercall number is passed in R8 register.
 *   - Up to 2 arguments are passed in RDI, RSI.
 *   - Return value will be placed in RAX.
 *
 * Because GCC doesn't support R8 register as direct register constraints, use
 * supported constraint as input with a explicit MOV to R8 in beginning of asm.
 */
static inline long acrn_hypercall0(unsigned long hcall_id)
{
    long result;

    asm volatile("movl %1, %%r8d\n\t"
             "vmcall\n\t"
             : "=a" (result)
             : "g" (hcall_id)
             : "r8", "memory");

    return result;
}

static inline long acrn_hypercall1(unsigned long hcall_id,
                   unsigned long param1)
{
    long result;

    asm volatile("movl %1, %%r8d\n\t"
             "vmcall\n\t"
             : "=a" (result)
             : "g" (hcall_id), "D" (param1)
             : "r8", "memory");

    return result;
}

static inline long acrn_hypercall2(unsigned long hcall_id,
                   unsigned long param1,
                   unsigned long param2)
{
    long result;

    asm volatile("movl %1, %%r8d\n\t"
             "vmcall\n\t"
             : "=a" (result)
             : "g" (hcall_id), "D" (param1), "S" (param2)
             : "r8", "memory");

    return result;
}

#endif /* _ASM_X86_ACRN_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--