!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/net/x25/   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:     x25_route.c (6.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *    X.25 Packet Layer release 002
 *
 *    This is ALPHA test software. This code may break your machine, randomly fail to work with new 
 *    releases, misbehave and/or generally screw up. It might even work. 
 *
 *    This code REQUIRES 2.1.15 or higher
 *
 *    This module:
 *        This module is free software; you can redistribute it and/or
 *        modify it under the terms of the GNU General Public License
 *        as published by the Free Software Foundation; either version
 *        2 of the License, or (at your option) any later version.
 *
 *    History
 *    X.25 001    Jonathan Naylor    Started coding.
 */

#include <linux/config.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/timer.h>
#include <linux/string.h>
#include <linux/sockios.h>
#include <linux/net.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <net/arp.h>
#include <linux/if_arp.h>
#include <linux/skbuff.h>
#include <net/sock.h>
#include <asm/segment.h>
#include <asm/system.h>
#include <asm/uaccess.h>
#include <linux/fcntl.h>
#include <linux/termios.h>    /* For TIOCINQ/OUTQ */
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/notifier.h>
#include <linux/init.h>
#include <net/x25.h>

static struct x25_route *x25_route_list /* = NULL initially */;

/*
 *    Add a new route.
 */
static int x25_add_route(x25_address *address, unsigned int sigdigits, struct net_device *dev)
{
    struct x25_route *x25_route;
    unsigned long flags;

    for (x25_route = x25_route_list; x25_route != NULL; x25_route = x25_route->next)
        if (memcmp(&x25_route->address, address, sigdigits) == 0 && x25_route->sigdigits == sigdigits)
            return -EINVAL;

    if ((x25_route = kmalloc(sizeof(*x25_route), GFP_ATOMIC)) == NULL)
        return -ENOMEM;

    strcpy(x25_route->address.x25_addr, "000000000000000");
    memcpy(x25_route->address.x25_addr, address->x25_addr, sigdigits);

    x25_route->sigdigits = sigdigits;
    x25_route->dev       = dev;

    save_flags(flags); cli();
    x25_route->next = x25_route_list;
    x25_route_list  = x25_route;
    restore_flags(flags);

    return 0;
}

static void x25_remove_route(struct x25_route *x25_route)
{
    struct x25_route *s;
    unsigned long flags;

    save_flags(flags);
    cli();

    if ((s = x25_route_list) == x25_route) {
        x25_route_list = x25_route->next;
        restore_flags(flags);
        kfree(x25_route);
        return;
    }

    while (s != NULL && s->next != NULL) {
        if (s->next == x25_route) {
            s->next = x25_route->next;
            restore_flags(flags);
            kfree(x25_route);
            return;
        }

        s = s->next;
    }

    restore_flags(flags);
}

static int x25_del_route(x25_address *address, unsigned int sigdigits, struct net_device *dev)
{
    struct x25_route *x25_route;

    for (x25_route = x25_route_list; x25_route != NULL; x25_route = x25_route->next) {
        if (memcmp(&x25_route->address, address, sigdigits) == 0 && x25_route->sigdigits == sigdigits && x25_route->dev == dev) {
            x25_remove_route(x25_route);
            return 0;
        }
    }

    return -EINVAL;
}

/*
 *    A device has been removed, remove its routes.
 */
void x25_route_device_down(struct net_device *dev)
{
    struct x25_route *route, *x25_route = x25_route_list;

    while (x25_route != NULL) {
        route     = x25_route;
        x25_route = x25_route->next;

        if (route->dev == dev)
            x25_remove_route(route);
    }
}

/*
 *    Check that the device given is a valid X.25 interface that is "up".
 */
struct net_device *x25_dev_get(char *devname)
{
    struct net_device *dev;

    if ((dev = dev_get_by_name(devname)) == NULL)
        return NULL;

    if ((dev->flags & IFF_UP) && (dev->type == ARPHRD_X25
#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
       || dev->type == ARPHRD_ETHER
#endif
       ))
        return dev;

    dev_put(dev);

    return NULL;
}

/*
 *    Find a device given an X.25 address.
 */
struct net_device *x25_get_route(x25_address *addr)
{
    struct x25_route *route, *use = NULL;

    for (route = x25_route_list; route != NULL; route = route->next) {
        if (memcmp(&route->address, addr, route->sigdigits) == 0) {
            if (use == NULL) {
                use = route;
            } else {
                if (route->sigdigits > use->sigdigits)
                    use = route;
            }
        }
    }

    return (use != NULL) ? use->dev : NULL;
}

/*
 *    Handle the ioctls that control the routing functions.
 */
int x25_route_ioctl(unsigned int cmd, void *arg)
{
    struct x25_route_struct x25_route;
    struct net_device *dev;
    int err;

    switch (cmd) {

        case SIOCADDRT:
            if (copy_from_user(&x25_route, arg, sizeof(struct x25_route_struct)))
                return -EFAULT;
            if (x25_route.sigdigits < 0 || x25_route.sigdigits > 15)
                return -EINVAL;
            if ((dev = x25_dev_get(x25_route.device)) == NULL)
                return -EINVAL;
            err = x25_add_route(&x25_route.address, x25_route.sigdigits, dev);
            dev_put(dev);
            return err;

        case SIOCDELRT:
            if (copy_from_user(&x25_route, arg, sizeof(struct x25_route_struct)))
                return -EFAULT;
            if (x25_route.sigdigits < 0 || x25_route.sigdigits > 15)
                return -EINVAL;
            if ((dev = x25_dev_get(x25_route.device)) == NULL)
                return -EINVAL;
            err = x25_del_route(&x25_route.address, x25_route.sigdigits, dev);
            dev_put(dev);
            return err;

        default:
            return -EINVAL;
    }

    return 0;
}

int x25_routes_get_info(char *buffer, char **start, off_t offset, int length)
{
    struct x25_route *x25_route;
    int len     = 0;
    off_t pos   = 0;
    off_t begin = 0;

    cli();

    len += sprintf(buffer, "address          digits  device\n");

    for (x25_route = x25_route_list; x25_route != NULL; x25_route = x25_route->next) {
        len += sprintf(buffer + len, "%-15s  %-6d  %-5s\n",
            x25_route->address.x25_addr,
            x25_route->sigdigits,
            (x25_route->dev != NULL) ? x25_route->dev->name : "???");

        pos = begin + len;

        if (pos < offset) {
            len   = 0;
            begin = pos;
        }

        if (pos > offset + length)
            break;
    }

    sti();

    *start = buffer + (offset - begin);
    len   -= (offset - begin);

    if (len > length) len = length;

    return len;


/*
 *    Release all memory associated with X.25 routing structures.
 */
void __exit x25_route_free(void)
{
    struct x25_route *route, *x25_route = x25_route_list;

    while (x25_route != NULL) {
        route     = x25_route;
        x25_route = x25_route->next;

        x25_remove_route(route);
    }
}

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