Yohohohohohooho | Sanrei Aya
Sanrei Aya


Server : LiteSpeed
System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User : elvh3918 ( 1528)
PHP Version : 8.2.31
Disable Function : mail
Directory :  /opt/cloudlinux/venv/lib64/python3.11/site-packages/xray/internal/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/cloudlinux/venv/lib64/python3.11/site-packages/xray/internal/local_counters.py
# -*- coding: utf-8 -*-

# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT
import errno
import logging
import os
import threading
from contextlib import contextmanager
from dataclasses import dataclass
from typing import Dict, Generator

from xray.internal.constants import request_data_storage, safe_id_pattern

logger = logging.getLogger(__name__)


@dataclass
class TaskCounterStorage:
    """
    Typing that has lock and value storage with some syntax sugar.
    """
    lock: threading.Lock
    next_request_id: int

    @property
    def processed_requests(self):
        return self.next_request_id - 1


_request_id_storage: Dict[str, TaskCounterStorage] = dict()
_global_storage_lock = threading.Lock()


@contextmanager
def open_local_storage(fake_task_id: str, flush=False) -> Generator[TaskCounterStorage, None, None]:
    """
    Open local task information storage.
    @param fake_task_id:
        unique string, usually obtained as task.fake_id
    @param flush:
        whether to save data to file right after update
    """
    logger.debug('Opening storage %s', fake_task_id)
    storage = _get_or_create_record(fake_task_id)
    with storage.lock:
        yield storage

        if flush:
            logger.info('Updating task %s requests counter in file', fake_task_id)
            _save_data_to_file(fake_task_id, storage)


def remove_local_storage(fake_task_id):
    """
    Remove local storage record.
    @param fake_task_id:
        unique string, usually obtained as task.fake_id
    """
    logger.info('Removing memory storage for task %s', fake_task_id)
    with _global_storage_lock:
        if fake_task_id in _request_id_storage:
            del _request_id_storage[fake_task_id]


def get_task_ids():
    """
    List all fake task ids saved in local storage.
    """
    return list(_request_id_storage)


def flush_memory_storage(remove=True):
    """
    List all fake task ids saved in local storage.
    """
    for fake_task_id in list(_request_id_storage.keys()):
        logger.info('Flushing task id %s on disk', fake_task_id)
        with open_local_storage(fake_task_id) as storage:
            _save_data_to_file(fake_task_id, storage)
            if remove:
                del _request_id_storage[fake_task_id]


def _nofollow_opener(path, flags):
    return os.open(path, flags | os.O_NOFOLLOW, 0o600)


def _save_data_to_file(fake_task_id: str, storage: TaskCounterStorage):
    """
    Saves storage data from memory to file.
    """
    if not fake_task_id or not safe_id_pattern.match(fake_task_id):
        raise ValueError(f'Invalid task_id format: {fake_task_id}')
    req_id_file = os.path.join(request_data_storage, fake_task_id)
    try:
        with open(req_id_file, 'w', opener=_nofollow_opener) as f:
            f.write(str(storage.next_request_id))
    except OSError as e:
        if e.errno == errno.ELOOP:
            logger.warning('Refusing to follow symlink: %s', req_id_file)
            return
        raise


def _get_or_create_record(fake_task_id) -> TaskCounterStorage:
    """
    Takes record from local storage or creates new one and returns object
    """
    with _global_storage_lock:
        if fake_task_id not in _request_id_storage:
            _request_id_storage[fake_task_id] = TaskCounterStorage(
                lock=threading.Lock(),
                next_request_id=1
            )

            storage = _request_id_storage[fake_task_id]

            req_id_file = os.path.join(request_data_storage, fake_task_id)
            try:
                with open(req_id_file, 'r', opener=_nofollow_opener) as f:
                    storage.next_request_id = int(f.read())
            except FileNotFoundError:
                pass
            except ValueError:
                logger.warning('Corrupted counter file for task %s, '
                               'resetting to default', fake_task_id)
            except OSError as e:
                if e.errno == errno.ELOOP:
                    logger.warning('Refusing to follow symlink: %s',
                                   req_id_file)
                else:
                    raise
        else:
            storage = _request_id_storage[fake_task_id]
    return storage

Yohohohohohooho | Sanrei Aya