!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

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

Safe-mode: OFF (not secure)

/usr/src/linux-headers-2.6.24-28/include/asm-s390/   drwxr-xr-x
Free 1.06 GB of 97.11 GB (1.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     futex.h (1.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _ASM_S390_FUTEX_H
#define _ASM_S390_FUTEX_H

#ifdef __KERNEL__

#include <linux/futex.h>
#include <linux/uaccess.h>
#include <asm/errno.h>

static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
{
    int op = (encoded_op >> 28) & 7;
    int cmp = (encoded_op >> 24) & 15;
    int oparg = (encoded_op << 8) >> 20;
    int cmparg = (encoded_op << 20) >> 20;
    int oldval, ret;

    if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28))
        oparg = 1 << oparg;

    if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int)))
        return -EFAULT;

    pagefault_disable();
    ret = uaccess.futex_atomic_op(op, uaddr, oparg, &oldval);
    pagefault_enable();

    if (!ret) {
        switch (cmp) {
        case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break;
        case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break;
        case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break;
        case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break;
        case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break;
        case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break;
        default: ret = -ENOSYS;
        }
    }
    return ret;
}

static inline int futex_atomic_cmpxchg_inatomic(int __user *uaddr,
                        int oldval, int newval)
{
    if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int)))
        return -EFAULT;

    return uaccess.futex_atomic_cmpxchg(uaddr, oldval, newval);
}

#endif /* __KERNEL__ */
#endif /* _ASM_S390_FUTEX_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.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0054 ]--