!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/arch/sparc/mm/   drwxr-xr-x
Free 318.34 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     generic.c (2.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* $Id: generic.c,v 1.13 2001/07/17 16:17:33 anton Exp $
 * generic.c: Generic Sparc mm routines that are not dependent upon
 *            MMU type but are Sparc specific.
 *
 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
 */

#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/swap.h>
#include <linux/pagemap.h>

#include <asm/pgalloc.h>
#include <asm/pgtable.h>
#include <asm/page.h>

static inline void forget_pte(pte_t page)
{
    if (pte_none(page))
        return;
    if (pte_present(page)) {
        struct page *ptpage = pte_page(page);
        if ((!VALID_PAGE(ptpage)) || PageReserved(ptpage))
            return;
        page_cache_release(ptpage);
        return;
    }
    swap_free(pte_to_swp_entry(page));
}

/* Remap IO memory, the same way as remap_page_range(), but use
 * the obio memory space.
 *
 * They use a pgprot that sets PAGE_IO and does not check the
 * mem_map table as this is independent of normal memory.
 */
static inline void io_remap_pte_range(pte_t * pte, unsigned long address, unsigned long size,
    unsigned long offset, pgprot_t prot, int space)
{
    unsigned long end;

    address &= ~PMD_MASK;
    end = address + size;
    if (end > PMD_SIZE)
        end = PMD_SIZE;
    do {
        pte_t oldpage = *pte;
        pte_clear(pte);
        set_pte(pte, mk_pte_io(offset, prot, space));
        forget_pte(oldpage);
        address += PAGE_SIZE;
        offset += PAGE_SIZE;
        pte++;
    } while (address < end);
}

static inline int io_remap_pmd_range(pmd_t * pmd, unsigned long address, unsigned long size,
    unsigned long offset, pgprot_t prot, int space)
{
    unsigned long end;

    address &= ~PGDIR_MASK;
    end = address + size;
    if (end > PGDIR_SIZE)
        end = PGDIR_SIZE;
    offset -= address;
    do {
        pte_t * pte = pte_alloc(current->mm, pmd, address);
        if (!pte)
            return -ENOMEM;
        io_remap_pte_range(pte, address, end - address, address + offset, prot, space);
        address = (address + PMD_SIZE) & PMD_MASK;
        pmd++;
    } while (address < end);
    return 0;
}

int io_remap_page_range(unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot, int space)
{
    int error = 0;
    pgd_t * dir;
    unsigned long beg = from;
    unsigned long end = from + size;
    struct mm_struct *mm = current->mm;

    prot = __pgprot(pg_iobits);
    offset -= from;
    dir = pgd_offset(mm, from);
    flush_cache_range(mm, beg, end);

    spin_lock(&mm->page_table_lock);
    while (from < end) {
        pmd_t *pmd = pmd_alloc(current->mm, dir, from);
        error = -ENOMEM;
        if (!pmd)
            break;
        error = io_remap_pmd_range(pmd, from, end - from, offset + from, prot, space);
        if (error)
            break;
        from = (from + PGDIR_SIZE) & PGDIR_MASK;
        dir++;
    }
    spin_unlock(&mm->page_table_lock);

    flush_tlb_range(current->mm, beg, end);
    return error;
}

:: 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.0269 ]--