!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/m68k/mm/   drwxr-xr-x
Free 318.33 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:     hwtest.c (2.37 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* Tests for presence or absence of hardware registers.
 * This code was originally in atari/config.c, but I noticed
 * that it was also in drivers/nubus/nubus.c and I wanted to
 * use it in hp300/config.c, so it seemed sensible to pull it
 * out into its own file.
 * 
 * The test is for use when trying to read a hardware register
 * that isn't present would cause a bus error. We set up a 
 * temporary handler so that this doesn't kill the kernel.
 *
 * There is a test-by-reading and a test-by-writing; I present
 * them here complete with the comments from the original atari
 * config.c...
 *                -- PMM <pmaydell@chiark.greenend.org.uk>, 05/1998
 */

/* This function tests for the presence of an address, specially a
 * hardware register address. It is called very early in the kernel
 * initialization process, when the VBR register isn't set up yet. On
 * an Atari, it still points to address 0, which is unmapped. So a bus
 * error would cause another bus error while fetching the exception
 * vector, and the CPU would do nothing at all. So we needed to set up
 * a temporary VBR and a vector table for the duration of the test.
 */

int hwreg_present( volatile void *regp )
{
    int    ret = 0;
    long    save_sp, save_vbr;
    long    tmp_vectors[3];

    __asm__ __volatile__
    (    "movec    %/vbr,%2\n\t"
        "movel    #Lberr1,%4@(8)\n\t"
                "movec    %4,%/vbr\n\t"
        "movel    %/sp,%1\n\t"
        "moveq    #0,%0\n\t"
        "tstb    %3@\n\t"  
        "nop\n\t"
        "moveq    #1,%0\n"
                "Lberr1:\n\t"
        "movel    %1,%/sp\n\t"
        "movec    %2,%/vbr"
        : "=&d" (ret), "=&r" (save_sp), "=&r" (save_vbr)
        : "a" (regp), "a" (tmp_vectors)
                );

    return( ret );
}
  
/* Basically the same, but writes a value into a word register, protected
 * by a bus error handler. Returns 1 if successful, 0 otherwise.
 */

int hwreg_write( volatile void *regp, unsigned short val )
{
    int        ret;
    long    save_sp, save_vbr;
    long    tmp_vectors[3];

    __asm__ __volatile__
    (    "movec    %/vbr,%2\n\t"
        "movel    #Lberr2,%4@(8)\n\t"
        "movec    %4,%/vbr\n\t"
        "movel    %/sp,%1\n\t"
        "moveq    #0,%0\n\t"
        "movew    %5,%3@\n\t"  
        "nop    \n\t"    /* If this nop isn't present, 'ret' may already be
                 * loaded with 1 at the time the bus error
                 * happens! */
        "moveq    #1,%0\n"
    "Lberr2:\n\t"
        "movel    %1,%/sp\n\t"
        "movec    %2,%/vbr"
        : "=&d" (ret), "=&r" (save_sp), "=&r" (save_vbr)
        : "a" (regp), "a" (tmp_vectors), "g" (val)
    );

    return( ret );
}


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