!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/include/linux/   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:     umsdos_fs_i.h (1.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef UMSDOS_FS_I_H
#define UMSDOS_FS_I_H

#ifndef _LINUX_TYPES_H
#include <linux/types.h>
#endif

#include <linux/msdos_fs_i.h>
#include <linux/pipe_fs_i.h>

/* #Specification: strategy / in memory inode
 * Here is the information specific to the inode of the UMSDOS file
 * system. This information is added to the end of the standard struct
 * inode. Each file system has its own extension to struct inode,
 * so do the umsdos file system.
 * 
 * The strategy is to have the umsdos_inode_info as a superset of
 * the msdos_inode_info, since most of the time the job is done
 * by the msdos fs code.
 * 
 * So we duplicate the msdos_inode_info, and add our own info at the
 * end.
 * 
 * The offset in this EMD file of the entry: pos
 * 
 * For directory, we have dir_locking_info to help synchronise
 * file creation and file lookup. See also msdos_fs_i.h for more 
 * information about msdos_inode_info.
 * 
 * Special file and fifo do have an inode which correspond to an
 * empty MSDOS file.
 * 
 * symlink are processed mostly like regular file. The content is the
 * link.
 * 
 * The UMSDOS specific extension is placed after the union.
 */

struct dir_locking_info {
    wait_queue_head_t p;
    short int looking;    /* How many process doing a lookup */
    short int creating;    /* Is there any creation going on here
                 *  Only one at a time, although one
                 *  may recursively lock, so it is a counter
                 */
    long pid;        /* pid of the process owning the creation
                 * lock */
};

struct umsdos_inode_info {
    struct msdos_inode_info msdos_info;
    struct dir_locking_info dir_info;
    int i_patched;            /* Inode has been patched */
    int i_is_hlink;            /* Resolved hardlink inode? */
    off_t pos;            /* Entry offset in the emd_owner file */
};

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