2019-09-30 10:53:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Copyright (c) Huawei Technologies Co., Ltd. 2018-2019. All rights reserved.
|
2020-04-27 09:46:24 +08:00
|
|
|
* iSulad licensed under the Mulan PSL v2.
|
|
|
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
|
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
|
|
|
* http://license.coscl.org.cn/MulanPSL2
|
2019-09-30 10:53:41 -04:00
|
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
|
|
|
|
|
* PURPOSE.
|
2020-04-27 09:46:24 +08:00
|
|
|
* See the Mulan PSL v2 for more details.
|
2019-09-30 10:53:41 -04:00
|
|
|
* Author: lifeng
|
|
|
|
|
* Create: 2018-11-08
|
|
|
|
|
* Description: provide macro definition
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2020-01-20 10:36:04 +08:00
|
|
|
#ifndef _ISULAD_CONSTANTS_H
|
|
|
|
|
#define _ISULAD_CONSTANTS_H
|
2019-09-30 10:53:41 -04:00
|
|
|
|
|
|
|
|
/* mode of file and directory */
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_SECURE_FILE_MODE 0640
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_SECURE_DIRECTORY_MODE 0750
|
|
|
|
|
|
|
|
|
|
#define USER_REMAP_DIRECTORY_MODE 0751
|
|
|
|
|
|
|
|
|
|
#define ROOTFS_MNT_DIRECTORY_MODE 0640
|
|
|
|
|
|
|
|
|
|
#define CONFIG_DIRECTORY_MODE 0750
|
|
|
|
|
|
|
|
|
|
#define CONFIG_FILE_MODE 0640
|
|
|
|
|
|
|
|
|
|
#define ARCH_LOG_FILE_MODE 0440
|
|
|
|
|
|
|
|
|
|
#define WORKING_LOG_FILE_MODE 0640
|
|
|
|
|
|
|
|
|
|
#define LOG_DIRECTORY_MODE 0750
|
|
|
|
|
|
|
|
|
|
#define TEMP_DIRECTORY_MODE 0750
|
|
|
|
|
|
|
|
|
|
#define CONSOLE_FIFO_DIRECTORY_MODE 0770
|
|
|
|
|
|
|
|
|
|
#define SOCKET_GROUP_DIRECTORY_MODE 0660
|
|
|
|
|
|
|
|
|
|
#define DEBUG_FILE_MODE 0640
|
|
|
|
|
|
|
|
|
|
#define DEBUG_DIRECTORY_MODE 0750
|
|
|
|
|
|
2020-03-06 14:39:47 +08:00
|
|
|
#define NETWORK_MOUNT_FILE_MODE 0644
|
|
|
|
|
|
2020-05-25 11:24:27 +08:00
|
|
|
#define ETC_FILE_MODE 0755
|
|
|
|
|
|
2019-09-30 10:53:41 -04:00
|
|
|
#define ISULAD_CONFIG "/etc/isulad"
|
|
|
|
|
|
|
|
|
|
#define ISULAD_DAEMON_JSON_CONF_FILE ISULAD_CONFIG "/daemon.json"
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_CA_FILE "ca.pem"
|
|
|
|
|
#define DEFAULT_KEY_FILE "key.pem"
|
|
|
|
|
#define DEFAULT_CERT_FILE "cert.pem"
|
2020-01-19 00:06:40 -05:00
|
|
|
#define OCI_CONFIG_JSON "config.json"
|
2019-09-30 10:53:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#define LOG_MAX_RETRIES 10
|
|
|
|
|
|
|
|
|
|
#define MAX_MSG_BUFFER_SIZE (32 * 1024)
|
|
|
|
|
|
2020-02-06 10:44:20 +08:00
|
|
|
#define DEFAULT_WEBSOCKET_SERVER_LISTENING_PORT 10350
|
|
|
|
|
|
2019-09-30 10:53:41 -04:00
|
|
|
#endif
|
2019-12-25 15:50:34 +08:00
|
|
|
|