!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/drivers/macintosh/   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:     ans-lcd.c (3.41 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * /dev/lcd driver for Apple Network Servers.
 */

#include <linux/types.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/miscdevice.h>
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <asm/uaccess.h>
#include <asm/sections.h>
#include <asm/prom.h>
#include <asm/ans-lcd.h>
#include <asm/io.h>

#define ANSLCD_ADDR        0xf301c000
#define ANSLCD_CTRL_IX 0x00
#define ANSLCD_DATA_IX 0x10

static unsigned long anslcd_short_delay = 80;
static unsigned long anslcd_long_delay = 3280;
static volatile unsigned char* anslcd_ptr;

#undef DEBUG

static void __pmac
anslcd_write_byte_ctrl ( unsigned char c )
{
#ifdef DEBUG
    printk(KERN_DEBUG "LCD: CTRL byte: %02x\n",c);
#endif
    out_8(anslcd_ptr + ANSLCD_CTRL_IX, c);
    switch(c) {
        case 1:
        case 2:
        case 3:
            udelay(anslcd_long_delay); break;
        default: udelay(anslcd_short_delay);
    }
}

static void __pmac
anslcd_write_byte_data ( unsigned char c )
{
    out_8(anslcd_ptr + ANSLCD_DATA_IX, c);
    udelay(anslcd_short_delay);
}

static ssize_t __pmac
anslcd_write( struct file * file, const char * buf, 
                size_t count, loff_t *ppos )
{
    const char * p = buf;
    int i;

#ifdef DEBUG
    printk(KERN_DEBUG "LCD: write\n");
#endif

    if ( verify_area(VERIFY_READ, buf, count) )
        return -EFAULT;
    for ( i = *ppos; count > 0; ++i, ++p, --count ) 
    {
        char c;
        __get_user(c, p);
        anslcd_write_byte_data( c );
    }
    *ppos = i;
    return p - buf;
}

static int __pmac
anslcd_ioctl( struct inode * inode, struct file * file,
                unsigned int cmd, unsigned long arg )
{
    char ch, *temp;

#ifdef DEBUG
    printk(KERN_DEBUG "LCD: ioctl(%d,%d)\n",cmd,arg);
#endif

    switch ( cmd )
    {
    case ANSLCD_CLEAR:
        anslcd_write_byte_ctrl ( 0x38 );
        anslcd_write_byte_ctrl ( 0x0f );
        anslcd_write_byte_ctrl ( 0x06 );
        anslcd_write_byte_ctrl ( 0x01 );
        anslcd_write_byte_ctrl ( 0x02 );
        return 0;
    case ANSLCD_SENDCTRL:
        temp = (char *) arg;
        __get_user(ch, temp);
        for (; ch; temp++) { /* FIXME: This is ugly, but should work, as a \0 byte is not a valid command code */
            anslcd_write_byte_ctrl ( ch );
            __get_user(ch, temp);
        }
        return 0;
    case ANSLCD_SETSHORTDELAY:
        if (!capable(CAP_SYS_ADMIN))
            return -EACCES;
        anslcd_short_delay=arg;
        return 0;
    case ANSLCD_SETLONGDELAY:
        if (!capable(CAP_SYS_ADMIN))
            return -EACCES;
        anslcd_long_delay=arg;
        return 0;
    default:
        return -EINVAL;
    }
}

static int __pmac
anslcd_open( struct inode * inode, struct file * file )
{
    return 0;
}

struct file_operations anslcd_fops = {
    write:    anslcd_write,
    ioctl:    anslcd_ioctl,
    open:    anslcd_open,
};

static struct miscdevice anslcd_dev = {
    ANSLCD_MINOR,
    "anslcd",
    &anslcd_fops
};

const char anslcd_logo[] =    "********************"  /* Line #1 */
                "*      LINUX!      *"  /* Line #3 */
                "*    Welcome to    *"  /* Line #2 */
                "********************"; /* Line #4 */

int __init
anslcd_init(void)
{
    int a;
    struct device_node* node;

    node = find_devices("lcd");
    if (!node || !node->parent)
        return -ENODEV;
    if (strcmp(node->parent->name, "gc"))
        return -ENODEV;

    anslcd_ptr = (volatile unsigned char*)ioremap(ANSLCD_ADDR, 0x20);
    
    misc_register(&anslcd_dev);

#ifdef DEBUG
    printk(KERN_DEBUG "LCD: init\n");
#endif

    anslcd_write_byte_ctrl ( 0x38 );
    anslcd_write_byte_ctrl ( 0x0c );
    anslcd_write_byte_ctrl ( 0x06 );
    anslcd_write_byte_ctrl ( 0x01 );
    anslcd_write_byte_ctrl ( 0x02 );
    for(a=0;a<80;a++) {
        anslcd_write_byte_data(anslcd_logo[a]);
    }
    return 0;
}

__initcall(anslcd_init);


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