!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/prom/   drwxr-xr-x
Free 318.36 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:     devops.c (1.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* $Id: devops.c,v 1.13 2000/08/26 02:38:03 anton Exp $
 * devops.c:  Device operations using the PROM.
 *
 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
 */
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>

#include <asm/openprom.h>
#include <asm/oplib.h>

extern void restore_current(void);

/* Open the device described by the string 'dstr'.  Returns the handle
 * to that device used for subsequent operations on that device.
 * Returns -1 on failure.
 */
int
prom_devopen(char *dstr)
{
    int handle;
    unsigned long flags;
    spin_lock_irqsave(&prom_lock, flags);
    switch(prom_vers) {
    case PROM_V0:
        handle = (*(romvec->pv_v0devops.v0_devopen))(dstr);
        if(handle == 0) handle = -1;
        break;
    case PROM_V2:
    case PROM_V3:
        handle = (*(romvec->pv_v2devops.v2_dev_open))(dstr);
        break;
    default:
        handle = -1;
        break;
    };
    restore_current();
    spin_unlock_irqrestore(&prom_lock, flags);

    return handle;
}

/* Close the device described by device handle 'dhandle'. */
int
prom_devclose(int dhandle)
{
    unsigned long flags;
    spin_lock_irqsave(&prom_lock, flags);
    switch(prom_vers) {
    case PROM_V0:
        (*(romvec->pv_v0devops.v0_devclose))(dhandle);
        break;
    case PROM_V2:
    case PROM_V3:
        (*(romvec->pv_v2devops.v2_dev_close))(dhandle);
        break;
    default:
        break;
    };
    restore_current();
    spin_unlock_irqrestore(&prom_lock, flags);
    return 0;
}

/* Seek to specified location described by 'seekhi' and 'seeklo'
 * for device 'dhandle'.
 */
void
prom_seek(int dhandle, unsigned int seekhi, unsigned int seeklo)
{
    unsigned long flags;
    spin_lock_irqsave(&prom_lock, flags);
    switch(prom_vers) {
    case PROM_V0:
        (*(romvec->pv_v0devops.v0_seekdev))(dhandle, seekhi, seeklo);
        break;
    case PROM_V2:
    case PROM_V3:
        (*(romvec->pv_v2devops.v2_dev_seek))(dhandle, seekhi, seeklo);
        break;
    default:
        break;
    };
    restore_current();
    spin_unlock_irqrestore(&prom_lock, flags);

    return;
}

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