!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-6.8-headers-6.8.0-1028/include/linux/   drwxr-xr-x
Free 83.34 GB of 96.73 GB (86.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ism.h (2.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
/*
 *  Internal Shared Memory
 *
 *  Definitions for the ISM module
 *
 *  Copyright IBM Corp. 2022
 */
#ifndef _ISM_H
#define _ISM_H

#include <linux/workqueue.h>

struct ism_dmb {
    u64 dmb_tok;
    u64 rgid;
    u32 dmb_len;
    u32 sba_idx;
    u32 vlan_valid;
    u32 vlan_id;
    void *cpu_addr;
    dma_addr_t dma_addr;
};

/* Unless we gain unexpected popularity, this limit should hold for a while */
#define MAX_CLIENTS        8
#define ISM_NR_DMBS        1920

struct ism_dev {
    spinlock_t lock; /* protects the ism device */
    struct list_head list;
    struct pci_dev *pdev;

    struct ism_sba *sba;
    dma_addr_t sba_dma_addr;
    DECLARE_BITMAP(sba_bitmap, ISM_NR_DMBS);
    u8 *sba_client_arr;    /* entries are indices into 'clients' array */
    void *priv[MAX_CLIENTS];

    struct ism_eq *ieq;
    dma_addr_t ieq_dma_addr;

    struct device dev;
    u64 local_gid;
    int ieq_idx;

    struct ism_client *subs[MAX_CLIENTS];
};

struct ism_event {
    u32 type;
    u32 code;
    u64 tok;
    u64 time;
    u64 info;
};

struct ism_client {
    const char *name;
    void (*add)(struct ism_dev *dev);
    void (*remove)(struct ism_dev *dev);
    void (*handle_event)(struct ism_dev *dev, struct ism_event *event);
    /* Parameter dmbemask contains a bit vector with updated DMBEs, if sent
     * via ism_move_data(). Callback function must handle all active bits
     * indicated by dmbemask.
     */
    void (*handle_irq)(struct ism_dev *dev, unsigned int bit, u16 dmbemask);
    /* Private area - don't touch! */
    u8 id;
};

int ism_register_client(struct ism_client *client);
int  ism_unregister_client(struct ism_client *client);
static inline void *ism_get_priv(struct ism_dev *dev,
                 struct ism_client *client) {
    return dev->priv[client->id];
}

static inline void ism_set_priv(struct ism_dev *dev, struct ism_client *client,
                void *priv) {
    dev->priv[client->id] = priv;
}

int  ism_register_dmb(struct ism_dev *dev, struct ism_dmb *dmb,
              struct ism_client *client);
int  ism_unregister_dmb(struct ism_dev *dev, struct ism_dmb *dmb);
int  ism_move(struct ism_dev *dev, u64 dmb_tok, unsigned int idx, bool sf,
          unsigned int offset, void *data, unsigned int size);

const struct smcd_ops *ism_get_smcd_ops(void);

#endif    /* _ISM_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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0048 ]--