los_container_pri.h 3.3 KB
Newer Older
Z
zhushengle 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*
 * Copyright (c) 2023-2023 Huawei Device Co., Ltd. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this list of
 *    conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
 *    of conditions and the following disclaimer in the documentation and/or other materials
 *    provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
 *    to endorse or promote products derived from this software without specific prior written
 *    permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef _LOS_CONTAINER_PRI_H
#define _LOS_CONTAINER_PRI_H

#include "los_atomic.h"
#ifdef LOSCFG_KERNEL_CONTAINER
#ifdef LOSCFG_PID_CONTAINER
#include "los_pid_container_pri.h"
#endif
Z
zhushengle 已提交
39 40 41
#ifdef LOSCFG_UTS_CONTAINER
#include "los_uts_container_pri.h"
#endif
42 43 44
#ifdef LOSCFG_MNT_CONTAINER
#include "los_mnt_container_pri.h"
#endif
Z
zhushengle 已提交
45 46 47
#ifdef LOSCFG_IPC_CONTAINER
#include "los_ipc_container_pri.h"
#endif
Z
zhushengle 已提交
48 49 50
#ifdef LOSCFG_USER_CONTAINER
#include "los_user_container_pri.h"
#endif
Z
zhushengle 已提交
51 52 53
#ifdef LOSCFG_TIME_CONTAINER
#include "los_time_container_pri.h"
#endif
Z
zhushengle 已提交
54

55 56 57
typedef enum {
    CONTAINER = 0,
    PID_CONTAINER,
Z
zhushengle 已提交
58
    PID_CHILD_CONTAINER,
59
    UTS_CONTAINER,
60
    MNT_CONTAINER,
Z
zhushengle 已提交
61
    IPC_CONTAINER,
Z
zhushengle 已提交
62
    USER_CONTAINER,
Z
zhushengle 已提交
63 64
    TIME_CONTAINER,
    TIME_CHILD_CONTAINER,
Z
zhushengle 已提交
65
    CONTAINER_MAX,
66 67
} ContainerType;

Z
zhushengle 已提交
68 69 70 71
typedef struct Container {
    Atomic   rc;
#ifdef LOSCFG_PID_CONTAINER
    struct PidContainer *pidContainer;
Z
zhushengle 已提交
72
    struct PidContainer *pidForChildContainer;
Z
zhushengle 已提交
73 74 75
#endif
#ifdef LOSCFG_UTS_CONTAINER
    struct UtsContainer *utsContainer;
Z
zhushengle 已提交
76
#endif
77 78 79
#ifdef LOSCFG_MNT_CONTAINER
    struct MntContainer *mntContainer;
#endif
Z
zhushengle 已提交
80 81 82
#ifdef LOSCFG_IPC_CONTAINER
    struct IpcContainer *ipcContainer;
#endif
Z
zhushengle 已提交
83
#ifdef LOSCFG_TIME_CONTAINER
Z
zhushengle 已提交
84 85 86
    struct TimeContainer *timeContainer;
    struct TimeContainer *timeForChildContainer;
#endif
Z
zhushengle 已提交
87 88 89 90 91 92 93 94 95
} Container;

VOID OsContainerInitSystemProcess(LosProcessCB *processCB);

VOID OsInitRootContainer(VOID);

UINT32 OsCopyContainers(UINTPTR flags, LosProcessCB *child, LosProcessCB *parent, UINT32 *processID);

VOID OsContainersDestroy(LosProcessCB *processCB);
96

Z
zhushengle 已提交
97 98
VOID OsContainerFree(LosProcessCB *processCB);

99 100
UINT32 OsAllocContainerID(VOID);

Z
zhushengle 已提交
101
UINT32 OsGetContainerID(LosProcessCB *processCB, ContainerType type);
Z
zhushengle 已提交
102 103 104

INT32 OsUnshare(UINT32 flags);

Z
zhushengle 已提交
105 106
INT32 OsSetNs(INT32 fd, INT32 type);

Z
zhushengle 已提交
107 108
#endif
#endif /* _LOS_CONTAINER_PRI_H */