!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/include/asm-parisc/   drwxr-xr-x
Free 318.35 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mmu.h (1.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * parisc mmu structures 
 */

#ifndef _PARISC_MMU_H_
#define _PARISC_MMU_H_

#ifndef __ASSEMBLY__

/* Default "unsigned long" context */
typedef unsigned long mm_context_t;

/* Hardware Page Table Entry */
typedef struct _PTE {
    unsigned long v:1;    /* Entry is valid */
    unsigned long tag:31;    /* Unique Tag */

    unsigned long r:1;    /* referenced */
    unsigned long os_1:1;    /*  */
    unsigned long t:1;    /* page reference trap */
    unsigned long d:1;    /* dirty */
    unsigned long b:1;    /* break */
    unsigned long type:3;    /* access type */
    unsigned long pl1:2;    /* PL1 (execute) */
    unsigned long pl2:2;    /* PL2 (write) */
    unsigned long u:1;    /* uncacheable */
    unsigned long id:1;    /* access id */
    unsigned long os_2:1;    /*  */

    unsigned long os_3:3;    /*  */
    unsigned long res_1:4;    /*  */
    unsigned long phys:20;    /* physical page number */
    unsigned long os_4:2;    /*  */
    unsigned long res_2:3;    /*  */

    unsigned long next;    /* pointer to next page */
} PTE; 

/*
 * Simulated two-level MMU.  This structure is used by the kernel
 * to keep track of MMU mappings and is used to update/maintain
 * the hardware HASH table which is really a cache of mappings.
 *
 * The simulated structures mimic the hardware available on other
 * platforms, notably the 80x86 and 680x0.
 */

typedef struct _pte {
       unsigned long page_num:20;
       unsigned long flags:12;        /* Page flags (some unused bits) */
} pte;

#define PD_SHIFT (10+12)        /* Page directory */
#define PD_MASK  0x02FF
#define PT_SHIFT (12)            /* Page Table */
#define PT_MASK  0x02FF
#define PG_SHIFT (12)            /* Page Entry */

/* MMU context */

typedef struct _MMU_context {
    long    pid[4];
    pte    **pmap;        /* Two-level page-map structure */
} MMU_context;

#endif /* __ASSEMBLY__ */

#endif /* _PARISC_MMU_H_ */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0142 ]--