!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/include/linux/   drwxr-xr-x
Free 3.19 GB of 27.03 GB (11.81%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     intermezzo_kml.h (4.5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __INTERMEZZO_KML_H
#define __INTERMEZZO_KML_H

#include <linux/version.h>
#include <linux/intermezzo_psdev.h>
#include <linux/fs.h>
#include <linux/intermezzo_journal.h>

#define PRESTO_KML_MAJOR_VERSION 0x00010000
#define PRESTO_KML_MINOR_VERSION 0x00002001
#define PRESTO_OP_NOOP          0
#define PRESTO_OP_CREATE        1
#define PRESTO_OP_MKDIR         2
#define PRESTO_OP_UNLINK        3
#define PRESTO_OP_RMDIR         4
#define PRESTO_OP_CLOSE         5
#define PRESTO_OP_SYMLINK       6
#define PRESTO_OP_RENAME        7
#define PRESTO_OP_SETATTR       8
#define PRESTO_OP_LINK          9
#define PRESTO_OP_OPEN          10
#define PRESTO_OP_MKNOD         11
#define PRESTO_OP_WRITE         12
#define PRESTO_OP_RELEASE       13
#define PRESTO_OP_TRUNC         14
#define PRESTO_LML_DONE         1 /* flag to get first write to do LML */
#define KML_KOP_MARK            0xffff

struct presto_lml_data {
        loff_t   rec_offset;
};

struct big_journal_prefix {
        u32 len;
        u32 version;
        u32 pid;
        u32 uid;
        u32 fsuid;
        u32 fsgid;
        u32 opcode;
        u32 ngroups;
        u32 groups[NGROUPS_MAX];
};

enum kml_opcode {
        KML_CREATE = 1,
        KML_MKDIR,
        KML_UNLINK,
        KML_RMDIR,
        KML_CLOSE,
        KML_SYMLINK,
        KML_RENAME,
        KML_SETATTR,
        KML_LINK,
        KML_OPEN,
        KML_MKNOD,
        KML_ENDMARK = 0xff
};

struct kml_create {
    char             *path;
    struct presto_version     new_objectv,
                old_parentv,
                new_parentv;
    int             mode;
    int             uid;
    int             gid;
};

struct kml_open {
};

struct kml_mkdir {
    char             *path;
    struct presto_version     new_objectv,
                old_parentv,
                new_parentv;
    int             mode;
    int             uid;
    int             gid;
};

struct kml_unlink {
    char             *path,     
                *name;
    struct presto_version     old_tgtv,
                old_parentv,
                new_parentv;
};

struct kml_rmdir {
    char             *path,
                *name;
    struct presto_version     old_tgtv,
                old_parentv,
                new_parentv;
};

struct kml_close {
    int             open_mode,
                open_uid,
                open_gid;
    char             *path;
    struct presto_version     new_objectv;
    __u64             ino;
          int             generation;
};

struct kml_symlink {
    char             *sourcepath,     
                *targetpath;
    struct presto_version     new_objectv,
                old_parentv,
                new_parentv;
          int             uid;
    int             gid;
};

struct kml_rename {
    char             *sourcepath,
                *targetpath;
    struct presto_version     old_objectv,
                new_objectv,
                old_tgtv,
                new_tgtv;
};

struct kml_setattr {
    char             *path;
    struct presto_version     old_objectv;
    struct iattr         iattr;
};

struct kml_link {
    char             *sourcepath,     
                *targetpath;
    struct presto_version     new_objectv,
                old_parentv,
                new_parentv;
};

struct kml_mknod {
    char             *path;
    struct presto_version     new_objectv,
                old_parentv,
                new_parentv;
    int             mode;
          int             uid;
    int             gid;
           int             major;
    int             minor;
};

/* kml record items for optimizing */
struct kml_kop_node
{
        u32             kml_recno;
        u32             kml_flag;
        u32             kml_op;
        nlink_t         i_nlink;
        u32             i_ino;
};

struct kml_kop_lnode
{
        struct list_head chains;
        struct kml_kop_node node;
};

struct kml_endmark {
    u32            total;
    struct kml_kop_node     *kop;
};

/* kml_flag */
#define  KML_REC_DELETE               1
#define  KML_REC_EXIST                0

struct kml_optimize {
    struct list_head kml_chains;
        u32              kml_flag;
        u32              kml_op;
        nlink_t          i_nlink;
        u32              i_ino;
};

struct kml_rec {
    /* attribute of this record */
    int                 rec_size;
        int                 rec_kml_offset;

    struct     big_journal_prefix     rec_head;
    union {
        struct kml_create     create;
        struct kml_open     open;
        struct kml_mkdir     mkdir;
        struct kml_unlink     unlink;
        struct kml_rmdir     rmdir;
        struct kml_close     close;
        struct kml_symlink     symlink;
        struct kml_rename     rename;
        struct kml_setattr     setattr;
        struct kml_mknod     mknod;
        struct kml_link     link;
        struct kml_endmark      endmark;
    } rec_kml;
        struct     journal_suffix         rec_tail;

        /* for kml optimize only */
        struct  kml_optimize kml_optimize;
};

/* defined in kml_decode.c */
/* printop */
#define  PRINT_KML_PREFIX             0x1
#define  PRINT_KML_SUFFIX             0x2
#define  PRINT_KML_REC                0x4
#define  PRINT_KML_OPTIMIZE           0x8
#define  PRINT_KML_EXIST              0x10
#define  PRINT_KML_DELETE             0x20

/* defined in kml_reint.c */
#define KML_CLOSE_BACKFETCH            1

#endif


:: 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 #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0035 ]--