summaryrefslogtreecommitdiffstats
path: root/xlators/protocol/client/src/client-messages.h
blob: 1dc3cea026ff5327181c23cac17b27d9e6f9aeea (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
  Copyright (c) 2015 Red Hat, Inc. <http://www.redhat.com>
  This file is part of GlusterFS.

  This file is licensed to you under your choice of the GNU Lesser
  General Public License, version 3 or any later version (LGPLv3 or
  later), or the GNU General Public License, version 2 (GPLv2), in all
  cases as published by the Free Software Foundation.
*/

#ifndef _PC_MESSAGES_H__
#define _PC_MESSAGES_H__

#include <glusterfs/glfs-message-id.h>

/* To add new message IDs, append new identifiers at the end of the list.
 *
 * Never remove a message ID. If it's not used anymore, you can rename it or
 * leave it as it is, but not delete it. This is to prevent reutilization of
 * IDs by other messages.
 *
 * The component name must match one of the entries defined in
 * glfs-message-id.h.
 */

GLFS_MSGID(
    PC, PC_MSG_TIMER_EXPIRED, PC_MSG_DIR_OP_FAILED, PC_MSG_FILE_OP_FAILED,
    PC_MSG_TIMER_REG, PC_MSG_GRACE_TIMER_CANCELLED, PC_MSG_DICT_SET_FAILED,
    PC_MSG_DICT_GET_FAILED, PC_MSG_NO_MEMORY, PC_MSG_RPC_CBK_FAILED,
    PC_MSG_FUNCTION_CALL_ERROR, PC_MSG_RPC_INITED_ALREADY, PC_MSG_RPC_INIT,
    PC_MSG_RPC_DESTROY, PC_MSG_RPC_INVALID_CALL, PC_MSG_INVALID_ENTRY,
    PC_MSG_HANDSHAKE_RETURN, PC_MSG_CHILD_UP_NOTIFY_FAILED,
    PC_MSG_CLIENT_DISCONNECTED, PC_MSG_CHILD_DOWN_NOTIFY_FAILED,
    PC_MSG_PARENT_UP, PC_MSG_PARENT_DOWN, PC_MSG_RPC_INIT_FAILED,
    PC_MSG_RPC_NOTIFY_FAILED, PC_MSG_FD_DUPLICATE_TRY, PC_MSG_FD_SET_FAIL,
    PC_MSG_DICT_UNSERIALIZE_FAIL, PC_MSG_FD_GET_FAIL, PC_MSG_FD_CTX_INVALID,
    PC_MSG_FOP_SEND_FAILED, PC_MSG_XDR_DECODING_FAILED, PC_MSG_REMOTE_OP_FAILED,
    PC_MSG_RPC_STATUS_ERROR, PC_MSG_VOL_FILE_NOT_FOUND, PC_MSG_SEND_REQ_FAIL,
    PC_MSG_LOCK_VERSION_SERVER, PC_MSG_SET_LK_VERSION_ERROR,
    PC_MSG_LOCK_REQ_FAIL, PC_MSG_CLIENT_REQ_FAIL, PC_MSG_LOCK_ERROR,
    PC_MSG_LOCK_REACQUIRE, PC_MSG_CHILD_UP_NOTIFY, PC_MSG_CHILD_UP_NOTIFY_DELAY,
    PC_MSG_VOL_SET_FAIL, PC_MSG_SETVOLUME_FAIL, PC_MSG_VOLFILE_NOTIFY_FAILED,
    PC_MSG_REMOTE_VOL_CONNECTED, PC_MSG_LOCK_MISMATCH, PC_MSG_LOCK_MATCH,
    PC_MSG_AUTH_FAILED, PC_MSG_AUTH_FAILED_NOTIFY_FAILED,
    PC_MSG_CHILD_CONNECTING_EVENT, PC_MSG_CHILD_CONNECTING_NOTIFY_FAILED,
    PC_MSG_PROCESS_UUID_SET_FAIL, PC_MSG_DICT_ERROR, PC_MSG_DICT_SERIALIZE_FAIL,
    PC_MSG_PGM_NOT_FOUND, PC_MSG_VERSION_INFO, PC_MSG_PORT_NUM_ERROR,
    PC_MSG_VERSION_ERROR, PC_MSG_DIR_OP_SUCCESS, PC_MSG_BAD_FD,
    PC_MSG_CLIENT_LOCK_INFO, PC_MSG_CACHE_INVALIDATION_FAIL,
    PC_MSG_CHILD_STATUS, PC_MSG_GFID_NULL, PC_MSG_RECALL_LEASE_FAIL,
    PC_MSG_INODELK_CONTENTION_FAIL, PC_MSG_ENTRYLK_CONTENTION_FAIL,
    PC_MSG_BIGGER_SIZE, PC_MSG_CLIENT_DUMP_LOCKS_FAILED, PC_MSG_UNKNOWN_CMD,
    PC_MSG_REOPEN_FAILED, PC_MSG_FIND_KEY_FAILED, PC_MSG_VOL_ID_CHANGED,
    PC_MSG_GETHOSTNAME_FAILED, PC_MSG_VOLFILE_KEY_SET_FAILED,
    PC_MSG_VOLFILE_CHECKSUM_FAILED, PC_MSG_FRAME_NOT_FOUND,
    PC_MSG_REMOTE_SUBVOL_SET_FAIL, PC_MSG_HANDSHAKE_PGM_NOT_FOUND);

#define PC_MSG_REMOTE_OP_FAILED_STR "remote operation failed."
#define PC_MSG_XDR_DECODING_FAILED_STR "XDR decoding failed"
#define PC_MSG_FOP_SEND_FAILED_STR "failed to send the fop"
#define PC_MSG_BIGGER_SIZE_STR "read-size is bigger than iobuf isze"
#define PC_MSG_CLIENT_DUMP_LOCKS_FAILED_STR "client dump locks failed"
#define PC_MSG_UNKNOWN_CMD_STR "Unknown cmd"
#define PC_MSG_CHILD_UP_NOTIFY_FAILED_STR "notify of CHILD_UP failed"
#define PC_MSG_CHILD_STATUS_STR                                                \
    "Defering sending CHILD_UP message as the client translators are not yet " \
    "ready to serve"
#define PC_MSG_CHILD_UP_NOTIFY_STR "last fd open'd - notifying CHILD_UP"
#define PC_MSG_RPC_STATUS_ERROR_STR                                            \
    "received RPC status error, returning ENOTCONN"
#define PC_MSG_REOPEN_FAILED_STR "reopen failed"
#define PC_MSG_DIR_OP_SUCCESS_STR "reopen dir succeeded"
#define PC_MSG_DIR_OP_FAILED_STR "failed to send the re-opendir request"
#define PC_MSG_CHILD_UP_NOTIFY_DELAY_STR                                       \
    "fds open - Delaying child_up until they are re-opened"
#define PC_MSG_VOL_SET_FAIL_STR "failed to set the volume"
#define PC_MSG_DICT_UNSERIALIZE_FAIL_STR "failed to unserialize buffer to dict"
#define PC_MSG_DICT_GET_FAILED_STR "failed to get from reply dict"
#define PC_MSG_SETVOLUME_FAIL_STR "SETVOLUME on remote-host failed"
#define PC_MSG_VOLFILE_NOTIFY_FAILED_STR "notify of VOLFILE_MODIFIED failed"
#define PC_MSG_FIND_KEY_FAILED_STR "failed to find key in the options"
#define PC_MSG_VOL_ID_CHANGED_STR                                              \
    "volume-id changed, can't connect to server. Needs remount"
#define PC_MSG_REMOTE_VOL_CONNECTED_STR "Connected, attached to remote volume"
#define PC_MSG_AUTH_FAILED_STR "sending AUTH_FAILED event"
#define PC_MSG_AUTH_FAILED_NOTIFY_FAILED_STR "notify of AUTH_FAILED failed"
#define PC_MSG_CHILD_CONNECTING_EVENT_STR "sending CHILD_CONNECTING event"
#define PC_MSG_CHILD_CONNECTING_NOTIFY_FAILED_STR                              \
    "notify of CHILD_CONNECTING failed"
#define PC_MSG_DICT_SET_FAILED_STR "failed to set in handshake msg"
#define PC_MSG_GETHOSTNAME_FAILED_STR "gethostname: failed"
#define PC_MSG_PROCESS_UUID_SET_FAIL_STR                                       \
    "asprintf failed while setting process_uuid"
#define PC_MSG_VOLFILE_KEY_SET_FAILED_STR "failed to set volfile-key"
#define PC_MSG_VOLFILE_CHECKSUM_FAILED_STR "failed to set volfile-checksum"
#define PC_MSG_DICT_SERIALIZE_FAIL_STR "failed to serialize dictionary"
#define PC_MSG_PGM_NOT_FOUND_STR "xlator not found OR RPC program not found"
#define PC_MSG_VERSION_INFO_STR "Using Program"
#define PC_MSG_FRAME_NOT_FOUND_STR "frame not found with rpc request"
#define PC_MSG_PORT_NUM_ERROR_STR                                              \
    "failed to get the port number for remote subvolume. Please run gluster "  \
    "volume status on server to see if brick process is running"
#define PC_MSG_REMOTE_SUBVOL_SET_FAIL_STR "remote-subvolume not set in volfile"
#define PC_MSG_VERSION_ERROR_STR "failed to get the version from server"
#define PC_MSG_NO_VERSION_SUPPORT_STR "server doesn't support the version"
#define PC_MSG_HANDSHAKE_PGM_NOT_FOUND_STR "handshake program not found"

#endif /* !_PC_MESSAGES_H__ */