Commit | Line | Data |
---|---|---|
cc022855 | 1 | /* |
7ac71e60 | 2 | ** NetXMS - Network Management System |
d02f6b92 | 3 | ** Copyright (C) 2003-2013 Victor Kirhenshtein |
cbcaf8c8 VK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
68f384ea VK |
6 | ** it under the terms of the GNU Lesser General Public License as published by |
7 | ** the Free Software Foundation; either version 3 of the License, or | |
cbcaf8c8 VK |
8 | ** (at your option) any later version. |
9 | ** | |
10 | ** This program is distributed in the hope that it will be useful, | |
11 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ** GNU General Public License for more details. | |
14 | ** | |
68f384ea | 15 | ** You should have received a copy of the GNU Lesser General Public License |
cbcaf8c8 VK |
16 | ** along with this program; if not, write to the Free Software |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
456d5d1c | 19 | ** File: nms_agent.h |
cbcaf8c8 VK |
20 | ** |
21 | **/ | |
22 | ||
23 | #ifndef _nms_agent_h_ | |
24 | #define _nms_agent_h_ | |
25 | ||
359784de VK |
26 | #ifdef _WIN32 |
27 | #ifdef LIBNXAGENT_EXPORTS | |
28 | #define LIBNXAGENT_EXPORTABLE __declspec(dllexport) | |
29 | #else | |
30 | #define LIBNXAGENT_EXPORTABLE __declspec(dllimport) | |
31 | #endif | |
32 | #else /* _WIN32 */ | |
33 | #define LIBNXAGENT_EXPORTABLE | |
34 | #endif | |
35 | ||
36 | ||
adc00755 | 37 | #include <nms_common.h> |
64584976 | 38 | #include <nms_util.h> |
e6c91aac | 39 | #include <nxconfig.h> |
bb48198e | 40 | #include <nxdbapi.h> |
6827d635 | 41 | |
acc04d96 VK |
42 | /** |
43 | * Initialization function declaration macro | |
44 | */ | |
a0a945fb | 45 | #if defined(_STATIC_AGENT) || defined(_NETWARE) |
e6c91aac | 46 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL NxSubAgentRegister_##name(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
a0a945fb | 47 | #else |
b5138dfb | 48 | #ifdef _WIN32 |
a0a945fb | 49 | #define DECLSPEC_EXPORT __declspec(dllexport) __cdecl |
b5138dfb VK |
50 | #else |
51 | #define DECLSPEC_EXPORT | |
52 | #endif | |
e6c91aac | 53 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL DECLSPEC_EXPORT NxSubAgentRegister(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
b5138dfb VK |
54 | #endif |
55 | ||
86c126f5 VK |
56 | /** |
57 | * Constants | |
58 | */ | |
cbcaf8c8 | 59 | #define AGENT_LISTEN_PORT 4700 |
deaa4491 | 60 | #define AGENT_PROTOCOL_VERSION 2 |
cbcaf8c8 | 61 | #define MAX_RESULT_LENGTH 256 |
e22f1644 VK |
62 | #define MAX_CMD_LEN 256 |
63 | #define COMMAND_TIMEOUT 60 | |
47e0446b | 64 | #define MAX_SUBAGENT_NAME 64 |
86c126f5 | 65 | #define MAX_INSTANCE_COLUMNS 8 |
cbcaf8c8 | 66 | |
d02f6b92 VK |
67 | /** |
68 | * Agent policy types | |
69 | */ | |
6ca3b41c | 70 | #define AGENT_POLICY_CONFIG 1 |
f47c176c | 71 | #define AGENT_POLICY_LOG_PARSER 2 |
6ca3b41c | 72 | |
169fa953 TD |
73 | /** |
74 | * Agent log parser policy folder | |
75 | */ | |
76 | #define LOGPARSER_AP_FOLDER _T("logparser_ap") | |
b123ecb3 | 77 | #define CONFIG_AP_FOLDER _T("config_ap") |
169fa953 | 78 | |
d02f6b92 VK |
79 | /** |
80 | * Error codes | |
81 | */ | |
967893bb VK |
82 | #define ERR_SUCCESS ((UINT32)0) |
83 | #define ERR_UNKNOWN_COMMAND ((UINT32)400) | |
84 | #define ERR_AUTH_REQUIRED ((UINT32)401) | |
85 | #define ERR_ACCESS_DENIED ((UINT32)403) | |
86 | #define ERR_UNKNOWN_PARAMETER ((UINT32)404) | |
87 | #define ERR_REQUEST_TIMEOUT ((UINT32)408) | |
88 | #define ERR_AUTH_FAILED ((UINT32)440) | |
89 | #define ERR_ALREADY_AUTHENTICATED ((UINT32)441) | |
90 | #define ERR_AUTH_NOT_REQUIRED ((UINT32)442) | |
91 | #define ERR_INTERNAL_ERROR ((UINT32)500) | |
92 | #define ERR_NOT_IMPLEMENTED ((UINT32)501) | |
93 | #define ERR_OUT_OF_RESOURCES ((UINT32)503) | |
94 | #define ERR_NOT_CONNECTED ((UINT32)900) | |
95 | #define ERR_CONNECTION_BROKEN ((UINT32)901) | |
96 | #define ERR_BAD_RESPONSE ((UINT32)902) | |
97 | #define ERR_IO_FAILURE ((UINT32)903) | |
98 | #define ERR_RESOURCE_BUSY ((UINT32)904) | |
99 | #define ERR_EXEC_FAILED ((UINT32)905) | |
100 | #define ERR_ENCRYPTION_REQUIRED ((UINT32)906) | |
101 | #define ERR_NO_CIPHERS ((UINT32)907) | |
102 | #define ERR_INVALID_PUBLIC_KEY ((UINT32)908) | |
103 | #define ERR_INVALID_SESSION_KEY ((UINT32)909) | |
104 | #define ERR_CONNECT_FAILED ((UINT32)910) | |
105 | #define ERR_MALFORMED_COMMAND ((UINT32)911) | |
106 | #define ERR_SOCKET_ERROR ((UINT32)912) | |
107 | #define ERR_BAD_ARGUMENTS ((UINT32)913) | |
108 | #define ERR_SUBAGENT_LOAD_FAILED ((UINT32)914) | |
109 | #define ERR_FILE_OPEN_ERROR ((UINT32)915) | |
110 | #define ERR_FILE_STAT_FAILED ((UINT32)916) | |
111 | #define ERR_MEM_ALLOC_FAILED ((UINT32)917) | |
112 | #define ERR_FILE_DELETE_FAILED ((UINT32)918) | |
9c786c0f | 113 | #define ERR_NO_SESSION_AGENT ((UINT32)919) |
87fff547 | 114 | #define ERR_SERVER_ID_UNSET ((UINT32)920) |
82493366 | 115 | #define ERR_NO_SUCH_INSTANCE ((UINT32)921) |
cbcaf8c8 | 116 | |
a1273b42 VK |
117 | /** |
118 | * Bulk data reconciliation DCI processing status codes | |
119 | */ | |
120 | #define BULK_DATA_REC_RETRY 0 | |
121 | #define BULK_DATA_REC_SUCCESS 1 | |
122 | #define BULK_DATA_REC_FAILURE 2 | |
123 | ||
f7319eac VK |
124 | /** |
125 | * Max bulk data block size | |
126 | */ | |
9cf1b53c | 127 | #define MAX_BULK_DATA_BLOCK_SIZE 8192 |
f7319eac | 128 | |
d02f6b92 VK |
129 | /** |
130 | * Parameter handler return codes | |
131 | */ | |
82493366 VK |
132 | #define SYSINFO_RC_SUCCESS 0 |
133 | #define SYSINFO_RC_UNSUPPORTED 1 | |
134 | #define SYSINFO_RC_ERROR 2 | |
135 | #define SYSINFO_RC_NO_SUCH_INSTANCE 3 | |
cbcaf8c8 | 136 | |
d02f6b92 VK |
137 | /** |
138 | * WinPerf features | |
139 | */ | |
967893bb VK |
140 | #define WINPERF_AUTOMATIC_SAMPLE_COUNT ((UINT32)0x00000001) |
141 | #define WINPERF_REMOTE_COUNTER_CONFIG ((UINT32)0x00000002) | |
cbcaf8c8 | 142 | |
74540dab VK |
143 | /** |
144 | * User session states (used by session agents) | |
145 | */ | |
146 | #define USER_SESSION_ACTIVE 0 | |
147 | #define USER_SESSION_CONNECTED 1 | |
148 | #define USER_SESSION_DISCONNECTED 2 | |
149 | #define USER_SESSION_IDLE 3 | |
150 | #define USER_SESSION_OTHER 4 | |
151 | ||
d02f6b92 VK |
152 | /** |
153 | * Descriptions for common parameters | |
154 | */ | |
bf3b7f79 VK |
155 | #define DCIDESC_FS_AVAIL _T("Available space on file system {instance}") |
156 | #define DCIDESC_FS_AVAILPERC _T("Percentage of available space on file system {instance}") | |
157 | #define DCIDESC_FS_FREE _T("Free space on file system {instance}") | |
158 | #define DCIDESC_FS_FREEPERC _T("Percentage of free space on file system {instance}") | |
159 | #define DCIDESC_FS_TOTAL _T("Total space on file system {instance}") | |
4a675f94 | 160 | #define DCIDESC_FS_TYPE _T("Type of file system {instance}") |
bf3b7f79 VK |
161 | #define DCIDESC_FS_USED _T("Used space on file system {instance}") |
162 | #define DCIDESC_FS_USEDPERC _T("Percentage of used space on file system {instance}") | |
f86273c9 VK |
163 | #define DCIDESC_LVM_LV_SIZE _T("Size of logical volume {instance}") |
164 | #define DCIDESC_LVM_LV_STATUS _T("Status of logical volume {instance}") | |
165 | #define DCIDESC_LVM_PV_FREE _T("Free space on physical volume {instance}") | |
166 | #define DCIDESC_LVM_PV_FREEPERC _T("Percentage of free space on physical volume {instance}") | |
167 | #define DCIDESC_LVM_PV_RESYNC_PART _T("Number of resynchronizing partitions on physical volume {instance}") | |
168 | #define DCIDESC_LVM_PV_STALE_PART _T("Number of stale partitions on physical volume {instance}") | |
169 | #define DCIDESC_LVM_PV_STATUS _T("Status of physical volume {instance}") | |
170 | #define DCIDESC_LVM_PV_TOTAL _T("Total size of physical volume {instance}") | |
171 | #define DCIDESC_LVM_PV_USED _T("Used space on physical volume {instance}") | |
172 | #define DCIDESC_LVM_PV_USEDPERC _T("Percentage of used space on physical volume {instance}") | |
173 | #define DCIDESC_LVM_VG_FREE _T("Free space in volume group {instance}") | |
174 | #define DCIDESC_LVM_VG_FREEPERC _T("Percentage of free space in volume group {instance}") | |
175 | #define DCIDESC_LVM_VG_LVOL_TOTAL _T("Number of logical volumes in volume group {instance}") | |
176 | #define DCIDESC_LVM_VG_PVOL_ACTIVE _T("Number of active physical volumes in volume group {instance}") | |
177 | #define DCIDESC_LVM_VG_PVOL_TOTAL _T("Number of physical volumes in volume group {instance}") | |
178 | #define DCIDESC_LVM_VG_RESYNC_PART _T("Number of resynchronizing partitions in volume group {instance}") | |
179 | #define DCIDESC_LVM_VG_STALE_PART _T("Number of stale partitions in volume group {instance}") | |
180 | #define DCIDESC_LVM_VG_STATUS _T("Status of volume group {instance}") | |
181 | #define DCIDESC_LVM_VG_TOTAL _T("Total size of volume group {instance}") | |
182 | #define DCIDESC_LVM_VG_USED _T("Used space in volume group {instance}") | |
183 | #define DCIDESC_LVM_VG_USEDPERC _T("Percentage of used space in volume group {instance}") | |
11b75b2e | 184 | #define DCIDESC_NET_INTERFACE_64BITCOUNTERS _T("Is 64bit interface counters supported") |
bf3b7f79 VK |
185 | #define DCIDESC_NET_INTERFACE_ADMINSTATUS _T("Administrative status of interface {instance}") |
186 | #define DCIDESC_NET_INTERFACE_BYTESIN _T("Number of input bytes on interface {instance}") | |
187 | #define DCIDESC_NET_INTERFACE_BYTESOUT _T("Number of output bytes on interface {instance}") | |
188 | #define DCIDESC_NET_INTERFACE_DESCRIPTION _T("Description of interface {instance}") | |
189 | #define DCIDESC_NET_INTERFACE_INERRORS _T("Number of input errors on interface {instance}") | |
190 | #define DCIDESC_NET_INTERFACE_LINK _T("Link status for interface {instance}") | |
191 | #define DCIDESC_NET_INTERFACE_MTU _T("MTU for interface {instance}") | |
192 | #define DCIDESC_NET_INTERFACE_OPERSTATUS _T("Operational status of interface {instance}") | |
193 | #define DCIDESC_NET_INTERFACE_OUTERRORS _T("Number of output errors on interface {instance}") | |
194 | #define DCIDESC_NET_INTERFACE_PACKETSIN _T("Number of input packets on interface {instance}") | |
195 | #define DCIDESC_NET_INTERFACE_PACKETSOUT _T("Number of output packets on interface {instance}") | |
196 | #define DCIDESC_NET_INTERFACE_SPEED _T("Speed of interface {instance}") | |
197 | #define DCIDESC_NET_IP_FORWARDING _T("IP forwarding status") | |
198 | #define DCIDESC_NET_IP6_FORWARDING _T("IPv6 forwarding status") | |
ecdf8898 VK |
199 | #define DCIDESC_NET_RESOLVER_ADDRBYNAME _T("Resolver: address for name {instance}") |
200 | #define DCIDESC_NET_RESOLVER_NAMEBYADDR _T("Resolver: name for address {instance}") | |
bf3b7f79 VK |
201 | #define DCIDESC_PHYSICALDISK_FIRMWARE _T("Firmware version of hard disk {instance}") |
202 | #define DCIDESC_PHYSICALDISK_MODEL _T("Model of hard disk {instance}") | |
203 | #define DCIDESC_PHYSICALDISK_SERIALNUMBER _T("Serial number of hard disk {instance}") | |
204 | #define DCIDESC_PHYSICALDISK_SMARTATTR _T("") | |
205 | #define DCIDESC_PHYSICALDISK_SMARTSTATUS _T("Status of hard disk {instance} reported by SMART") | |
206 | #define DCIDESC_PHYSICALDISK_TEMPERATURE _T("Temperature of hard disk {instance}") | |
41580924 VK |
207 | #define DCIDESC_SYSTEM_CPU_CACHE_SIZE _T("CPU {instance}: cache size (KB)") |
208 | #define DCIDESC_SYSTEM_CPU_CORE_ID _T("CPU {instance}: core ID") | |
bf3b7f79 | 209 | #define DCIDESC_SYSTEM_CPU_COUNT _T("Number of CPU in the system") |
41580924 VK |
210 | #define DCIDESC_SYSTEM_CPU_FREQUENCY _T("CPU {instance}: frequency") |
211 | #define DCIDESC_SYSTEM_CPU_MODEL _T("CPU {instance}: model") | |
212 | #define DCIDESC_SYSTEM_CPU_PHYSICAL_ID _T("CPU {instance}: physical ID") | |
bf3b7f79 | 213 | #define DCIDESC_SYSTEM_HOSTNAME _T("Host name") |
5741ae09 VK |
214 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE _T("Available physical memory") |
215 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE_PCT _T("Percentage of available physical memory") | |
216 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_BUFFERS _T("Physical memory used for buffers") | |
217 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_BUFFERS_PCT _T("Percentage of physical memory used for buffers") | |
218 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_CACHED _T("Physical memory used for cache") | |
219 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_CACHED_PCT _T("Percentage of physical memory used for cache") | |
bf3b7f79 VK |
220 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE _T("Free physical memory") |
221 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE_PCT _T("Percentage of free physical memory") | |
222 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_TOTAL _T("Total amount of physical memory") | |
223 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED _T("Used physical memory") | |
224 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED_PCT _T("Percentage of used physical memory") | |
03a48429 VK |
225 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE _T("Active virtual memory") |
226 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE_PCT _T("Percentage of active virtual memory") | |
bf3b7f79 VK |
227 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE _T("Free virtual memory") |
228 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE_PCT _T("Percentage of free virtual memory") | |
229 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_TOTAL _T("Total amount of virtual memory") | |
230 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED _T("Used virtual memory") | |
231 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED_PCT _T("Percentage of used virtual memory") | |
232 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE _T("Available virtual memory") | |
233 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE_PCT _T("Percentage of available virtual memory") | |
234 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE _T("Free swap space") | |
235 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE_PCT _T("Percentage of free swap space") | |
236 | #define DCIDESC_SYSTEM_MEMORY_SWAP_TOTAL _T("Total amount of swap space") | |
237 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED _T("Used swap space") | |
238 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED_PCT _T("Percentage of used swap space") | |
cd30e53b VK |
239 | #define DCIDESC_SYSTEM_MSGQUEUE_BYTES _T("Message queue {instance}: bytes in queue") |
240 | #define DCIDESC_SYSTEM_MSGQUEUE_BYTES_MAX _T("Message queue {instance}: maximum allowed bytes in queue") | |
241 | #define DCIDESC_SYSTEM_MSGQUEUE_CHANGE_TIME _T("Message queue {instance}: last change time") | |
242 | #define DCIDESC_SYSTEM_MSGQUEUE_MESSAGES _T("Message queue {instance}: number of messages") | |
243 | #define DCIDESC_SYSTEM_MSGQUEUE_RECV_TIME _T("Message queue {instance}: last receive time") | |
244 | #define DCIDESC_SYSTEM_MSGQUEUE_SEND_TIME _T("Message queue {instance}: last send time") | |
bf3b7f79 VK |
245 | #define DCIDESC_SYSTEM_UNAME _T("System uname") |
246 | #define DCIDESC_AGENT_ACCEPTEDCONNECTIONS _T("Number of connections accepted by agent") | |
247 | #define DCIDESC_AGENT_ACCEPTERRORS _T("Number of accept() call errors") | |
248 | #define DCIDESC_AGENT_ACTIVECONNECTIONS _T("Number of active connections to agent") | |
249 | #define DCIDESC_AGENT_AUTHENTICATIONFAILURES _T("Number of authentication failures") | |
250 | #define DCIDESC_AGENT_CONFIG_SERVER _T("Configuration server address set on agent startup") | |
df26f039 | 251 | #define DCIDESC_AGENT_DATACOLLQUEUESIZE _T("Agent data collector queue size") |
bf3b7f79 VK |
252 | #define DCIDESC_AGENT_FAILEDREQUESTS _T("Number of failed requests to agent") |
253 | #define DCIDESC_AGENT_GENERATED_TRAPS _T("Number of traps generated by agent") | |
05db3127 | 254 | #define DCIDESC_AGENT_IS_SUBAGENT_LOADED _T("Check if given subagent is loaded") |
bf3b7f79 | 255 | #define DCIDESC_AGENT_LAST_TRAP_TIME _T("Timestamp of last generated trap") |
7b30e5ae VK |
256 | #define DCIDESC_AGENT_LOCALDB_FAILED_QUERIES _T("Agent local database: failed queries") |
257 | #define DCIDESC_AGENT_LOCALDB_SLOW_QUERIES _T("Agent local database: long running queries") | |
258 | #define DCIDESC_AGENT_LOCALDB_STATUS _T("Agent local database: status") | |
259 | #define DCIDESC_AGENT_LOCALDB_TOTAL_QUERIES _T("Agent local database: total queries executed") | |
260 | #define DCIDESC_AGENT_LOG_STATUS _T("Agent log status") | |
bf3b7f79 VK |
261 | #define DCIDESC_AGENT_PROCESSEDREQUESTS _T("Number of requests processed by agent") |
262 | #define DCIDESC_AGENT_REGISTRAR _T("Registrar server address set on agent startup") | |
263 | #define DCIDESC_AGENT_REJECTEDCONNECTIONS _T("Number of connections rejected by agent") | |
264 | #define DCIDESC_AGENT_SENT_TRAPS _T("Number of traps successfully sent to server") | |
05db3127 | 265 | #define DCIDESC_AGENT_SOURCEPACKAGESUPPORT _T("Check if source packages are supported") |
bf3b7f79 | 266 | #define DCIDESC_AGENT_SUPPORTEDCIPHERS _T("List of ciphers supported by agent") |
374afd7b VK |
267 | #define DCIDESC_AGENT_THREADPOOL_ACTIVEREQUESTS _T("Agent thread pool {instance}: active requests") |
268 | #define DCIDESC_AGENT_THREADPOOL_CURRSIZE _T("Agent thread pool {instance}: current size") | |
269 | #define DCIDESC_AGENT_THREADPOOL_LOAD _T("Agent thread pool {instance}: current load") | |
270 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG _T("Agent thread pool {instance}: load average (1 minute)") | |
271 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG_5 _T("Agent thread pool {instance}: load average (5 minutes)") | |
272 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG_15 _T("Agent thread pool {instance}: load average (15 minutes)") | |
273 | #define DCIDESC_AGENT_THREADPOOL_MAXSIZE _T("Agent thread pool {instance}: max size") | |
274 | #define DCIDESC_AGENT_THREADPOOL_MINSIZE _T("Agent thread pool {instance}: min size") | |
275 | #define DCIDESC_AGENT_THREADPOOL_USAGE _T("Agent thread pool {instance}: usage") | |
bf3b7f79 VK |
276 | #define DCIDESC_AGENT_TIMEDOUTREQUESTS _T("Number of timed out requests to agent") |
277 | #define DCIDESC_AGENT_UNSUPPORTEDREQUESTS _T("Number of requests for unsupported parameters") | |
278 | #define DCIDESC_AGENT_UPTIME _T("Agent's uptime") | |
279 | #define DCIDESC_AGENT_VERSION _T("Agent's version") | |
280 | #define DCIDESC_FILE_COUNT _T("Number of files {instance}") | |
5ad4ed06 | 281 | #define DCIDESC_FILE_FOLDERCOUNT _T("Number of folders {instance}") |
bf3b7f79 VK |
282 | #define DCIDESC_FILE_HASH_CRC32 _T("CRC32 checksum of {instance}") |
283 | #define DCIDESC_FILE_HASH_MD5 _T("MD5 hash of {instance}") | |
284 | #define DCIDESC_FILE_HASH_SHA1 _T("SHA1 hash of {instance}") | |
285 | #define DCIDESC_FILE_SIZE _T("Size of file {instance}") | |
286 | #define DCIDESC_FILE_TIME_ACCESS _T("Time of last access to file {instance}") | |
287 | #define DCIDESC_FILE_TIME_CHANGE _T("Time of last status change of file {instance}") | |
288 | #define DCIDESC_FILE_TIME_MODIFY _T("Time of last modification of file {instance}") | |
8ce7501b | 289 | #define DCIDESC_SYSTEM_CURRENTTIME _T("Current system time") |
bf3b7f79 VK |
290 | #define DCIDESC_SYSTEM_PLATFORMNAME _T("Platform name") |
291 | #define DCIDESC_PROCESS_COUNT _T("Number of {instance} processes") | |
292 | #define DCIDESC_PROCESS_COUNTEX _T("Number of {instance} processes (extended)") | |
293 | #define DCIDESC_PROCESS_CPUTIME _T("Total execution time for process {instance}") | |
294 | #define DCIDESC_PROCESS_GDIOBJ _T("GDI objects used by process {instance}") | |
92b25da9 | 295 | #define DCIDESC_PROCESS_HANDLES _T("Number of handles in process {instance}") |
bf3b7f79 VK |
296 | #define DCIDESC_PROCESS_IO_OTHERB _T("") |
297 | #define DCIDESC_PROCESS_IO_OTHEROP _T("") | |
298 | #define DCIDESC_PROCESS_IO_READB _T("") | |
299 | #define DCIDESC_PROCESS_IO_READOP _T("") | |
300 | #define DCIDESC_PROCESS_IO_WRITEB _T("") | |
301 | #define DCIDESC_PROCESS_IO_WRITEOP _T("") | |
302 | #define DCIDESC_PROCESS_KERNELTIME _T("Total execution time in kernel mode for process {instance}") | |
303 | #define DCIDESC_PROCESS_PAGEFAULTS _T("Page faults for process {instance}") | |
304 | #define DCIDESC_PROCESS_SYSCALLS _T("Number of system calls made by process {instance}") | |
305 | #define DCIDESC_PROCESS_THREADS _T("Number of threads in process {instance}") | |
306 | #define DCIDESC_PROCESS_USEROBJ _T("USER objects used by process {instance}") | |
307 | #define DCIDESC_PROCESS_USERTIME _T("Total execution time in user mode for process {instance}") | |
308 | #define DCIDESC_PROCESS_VMSIZE _T("Virtual memory used by process {instance}") | |
309 | #define DCIDESC_PROCESS_WKSET _T("Physical memory used by process {instance}") | |
92b25da9 | 310 | #define DCIDESC_PROCESS_ZOMBIE_COUNT _T("Number of {instance} zombie processes") |
bf3b7f79 VK |
311 | #define DCIDESC_SYSTEM_APPADDRESSSPACE _T("Address space available to applications (MB)") |
312 | #define DCIDESC_SYSTEM_CONNECTEDUSERS _T("Number of logged in users") | |
92b25da9 | 313 | #define DCIDESC_SYSTEM_HANDLECOUNT _T("Total number of handles") |
bf3b7f79 VK |
314 | #define DCIDESC_SYSTEM_PROCESSCOUNT _T("Total number of processes") |
315 | #define DCIDESC_SYSTEM_SERVICESTATE _T("State of {instance} service") | |
bf3b7f79 VK |
316 | #define DCIDESC_SYSTEM_THREADCOUNT _T("Total number of threads") |
317 | #define DCIDESC_PDH_COUNTERVALUE _T("Value of PDH counter {instance}") | |
318 | #define DCIDESC_PDH_VERSION _T("Version of PDH.DLL") | |
319 | #define DCIDESC_SYSTEM_UPTIME _T("System uptime") | |
320 | #define DCIDESC_SYSTEM_CPU_LOADAVG _T("Average CPU load for last minute") | |
321 | #define DCIDESC_SYSTEM_CPU_LOADAVG5 _T("Average CPU load for last 5 minutes") | |
322 | #define DCIDESC_SYSTEM_CPU_LOADAVG15 _T("Average CPU load for last 15 minutes") | |
323 | ||
324 | ||
325 | #define DCIDESC_SYSTEM_CPU_USAGE_EX _T("Average CPU {instance} utilization for last minute") | |
326 | #define DCIDESC_SYSTEM_CPU_USAGE5_EX _T("Average CPU {instance} utilization for last 5 minutes") | |
327 | #define DCIDESC_SYSTEM_CPU_USAGE15_EX _T("Average CPU {instance} utilization for last 15 minutes") | |
efc43892 | 328 | #define DCIDESC_SYSTEM_CPU_USAGECURR_EX _T("Current CPU {instance} utilization") |
bf3b7f79 VK |
329 | #define DCIDESC_SYSTEM_CPU_USAGE _T("Average CPU utilization for last minute") |
330 | #define DCIDESC_SYSTEM_CPU_USAGE5 _T("Average CPU utilization for last 5 minutes") | |
331 | #define DCIDESC_SYSTEM_CPU_USAGE15 _T("Average CPU utilization for last 15 minutes") | |
efc43892 | 332 | #define DCIDESC_SYSTEM_CPU_USAGECURR _T("Current CPU utilization") |
bf3b7f79 VK |
333 | |
334 | #define DCIDESC_SYSTEM_CPU_USAGE_USER_EX _T("Average CPU {instance} utilization (user) for last minute") | |
335 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER_EX _T("Average CPU {instance} utilization (user) for last 5 minutes") | |
336 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER_EX _T("Average CPU {instance} utilization (user) for last 15 minutes") | |
337 | #define DCIDESC_SYSTEM_CPU_USAGE_USER _T("Average CPU utilization (user) for last minute") | |
338 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER _T("Average CPU utilization (user) for last 5 minutes") | |
339 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER _T("Average CPU utilization (user) for last 15 minutes") | |
340 | ||
341 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE_EX _T("Average CPU {instance} utilization (nice) for last minute") | |
342 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE_EX _T("Average CPU {instance} utilization (nice) for last 5 minutes") | |
343 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE_EX _T("Average CPU {instance} utilization (nice) for last 15 minutes") | |
344 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE _T("Average CPU utilization (nice) for last minute") | |
345 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE _T("Average CPU utilization (nice) for last 5 minutes") | |
346 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE _T("Average CPU utilization (nice) for last 15 minutes") | |
347 | ||
348 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last minute") | |
349 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 5 minutes") | |
350 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 15 minutes") | |
351 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM _T("Average CPU utilization (system) for last minute") | |
352 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM _T("Average CPU utilization (system) for last 5 minutes") | |
353 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM _T("Average CPU utilization (system) for last 15 minutes") | |
354 | ||
355 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE_EX _T("Average CPU {instance} utilization (idle) for last minute") | |
356 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 5 minutes") | |
357 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 15 minutes") | |
358 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE _T("Average CPU utilization (idle) for last minute") | |
359 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE _T("Average CPU utilization (idle) for last 5 minutes") | |
360 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE _T("Average CPU utilization (idle) for last 15 minutes") | |
361 | ||
362 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last minute") | |
363 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 5 minutes") | |
364 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 15 minutes") | |
365 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT _T("Average CPU utilization (iowait) for last minute") | |
366 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT _T("Average CPU utilization (iowait) for last 5 minutes") | |
367 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT _T("Average CPU utilization (iowait) for last 15 minutes") | |
368 | ||
369 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ_EX _T("Average CPU {instance} utilization (irq) for last minute") | |
370 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 5 minutes") | |
371 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 15 minutes") | |
372 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ _T("Average CPU utilization (irq) for last minute") | |
373 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ _T("Average CPU utilization (irq) for last 5 minutes") | |
374 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ _T("Average CPU utilization (irq) for last 15 minutes") | |
375 | ||
376 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last minute") | |
377 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 5 minutes") | |
378 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 15 minutes") | |
379 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ _T("Average CPU utilization (softirq) for last minute") | |
380 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ _T("Average CPU utilization (softirq) for last 5 minutes") | |
381 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ _T("Average CPU utilization (softirq) for last 15 minutes") | |
382 | ||
383 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL_EX _T("Average CPU {instance} utilization (steal) for last minute") | |
384 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 5 minutes") | |
385 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 15 minutes") | |
386 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL _T("Average CPU utilization (steal) for last minute") | |
387 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL _T("Average CPU utilization (steal) for last 5 minutes") | |
388 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL _T("Average CPU utilization (steal) for last 15 minutes") | |
389 | ||
390 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST_EX _T("Average CPU {instance} utilization (guest) for last minute") | |
391 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 5 minutes") | |
392 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 15 minutes") | |
393 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST _T("Average CPU utilization (guest) for last minute") | |
394 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST _T("Average CPU utilization (guest) for last 5 minutes") | |
395 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST _T("Average CPU utilization (guest) for last 15 minutes") | |
396 | ||
397 | #define DCIDESC_SYSTEM_IO_DISKQUEUE _T("Average disk queue length for last minute") | |
3e00a175 VK |
398 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MIN _T("Minimum disk queue length for last minute") |
399 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MAX _T("Maximum disk queue length for last minute") | |
bf3b7f79 | 400 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX _T("Average disk queue length of device {instance} for last minute") |
3e00a175 VK |
401 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MIN _T("Minimum disk queue length of device {instance} for last minute") |
402 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MAX _T("Maximum disk queue length of device {instance} for last minute") | |
bf3b7f79 VK |
403 | #define DCIDESC_SYSTEM_IO_DISKTIME _T("Percent of CPU time spent on I/O for last minute") |
404 | #define DCIDESC_SYSTEM_IO_DISKTIME_EX _T("Percent of CPU time spent on I/O on device {instance} for last minute") | |
405 | #define DCIDESC_SYSTEM_IO_WAITTIME _T("Average I/O request wait time") | |
406 | #define DCIDESC_SYSTEM_IO_WAITTIME_EX _T("Average I/O request wait time for device {instance}") | |
407 | #define DCIDESC_SYSTEM_IO_READS _T("Average number of read operations for last minute") | |
3e00a175 VK |
408 | #define DCIDESC_SYSTEM_IO_READS_MIN _T("Minimum number of read operations for last minute") |
409 | #define DCIDESC_SYSTEM_IO_READS_MAX _T("Maximum number of read operations for last minute") | |
bf3b7f79 | 410 | #define DCIDESC_SYSTEM_IO_READS_EX _T("Average number of read operations on device {instance} for last minute") |
3e00a175 VK |
411 | #define DCIDESC_SYSTEM_IO_READS_EX_MIN _T("Minimum number of read operations on device {instance} for last minute") |
412 | #define DCIDESC_SYSTEM_IO_READS_EX_MAX _T("Maximum number of read operations on device {instance} for last minute") | |
bf3b7f79 | 413 | #define DCIDESC_SYSTEM_IO_WRITES _T("Average number of write operations for last minute") |
3e00a175 VK |
414 | #define DCIDESC_SYSTEM_IO_WRITES_MIN _T("Minimum number of write operations for last minute") |
415 | #define DCIDESC_SYSTEM_IO_WRITES_MAX _T("Maximum number of write operations for last minute") | |
bf3b7f79 | 416 | #define DCIDESC_SYSTEM_IO_WRITES_EX _T("Average number of write operations on device {instance} for last minute") |
3e00a175 VK |
417 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MIN _T("Minimum number of write operations on device {instance} for last minute") |
418 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MAX _T("Maximum number of write operations on device {instance} for last minute") | |
bf3b7f79 | 419 | #define DCIDESC_SYSTEM_IO_XFERS _T("Average number of I/O transfers for last minute") |
3e00a175 VK |
420 | #define DCIDESC_SYSTEM_IO_XFERS_MIN _T("Minimum number of I/O transfers for last minute") |
421 | #define DCIDESC_SYSTEM_IO_XFERS_MAX _T("Maximum number of I/O transfers for last minute") | |
bf3b7f79 | 422 | #define DCIDESC_SYSTEM_IO_XFERS_EX _T("Average number of I/O transfers on device {instance} for last minute") |
3e00a175 VK |
423 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MIN _T("Minimum number of I/O transfers on device {instance} for last minute") |
424 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MAX _T("Maximum number of I/O transfers on device {instance} for last minute") | |
bf3b7f79 | 425 | #define DCIDESC_SYSTEM_IO_BYTEREADS _T("Average number of bytes read for last minute") |
3e00a175 VK |
426 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MIN _T("Minimum number of bytes read for last minute") |
427 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MAX _T("Maximum number of bytes read for last minute") | |
bf3b7f79 | 428 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX _T("Average number of bytes read on device {instance} for last minute") |
3e00a175 VK |
429 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MIN _T("Minimum number of bytes read on device {instance} for last minute") |
430 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MAX _T("Maximum number of bytes read on device {instance} for last minute") | |
bf3b7f79 | 431 | #define DCIDESC_SYSTEM_IO_BYTEWRITES _T("Average number of bytes written for last minute") |
3e00a175 VK |
432 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MIN _T("Minimum number of bytes written for last minute") |
433 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MAX _T("Maximum number of bytes written for last minute") | |
bf3b7f79 | 434 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX _T("Average number of bytes written on device {instance} for last minute") |
3e00a175 VK |
435 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MIN _T("Minimum number of bytes written on device {instance} for last minute") |
436 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MAX _T("Maximum number of bytes written on device {instance} for last minute") | |
bf3b7f79 VK |
437 | #define DCIDESC_SYSTEM_IO_OPENFILES _T("Number of open files") |
438 | ||
439 | ||
440 | #define DCIDESC_DEPRECATED _T("<deprecated>") | |
30c68fa1 AK |
441 | |
442 | ||
74540dab | 443 | #define DCTDESC_AGENT_SESSION_AGENTS _T("Registered session agents") |
ad12a86f | 444 | #define DCTDESC_AGENT_SUBAGENTS _T("Loaded subagents") |
a8799146 | 445 | #define DCTDESC_FILESYSTEM_VOLUMES _T("File system volumes") |
f86273c9 VK |
446 | #define DCTDESC_LVM_VOLUME_GROUPS _T("LVM volume groups") |
447 | #define DCTDESC_LVM_LOGICAL_VOLUMES _T("Logical volumes in volume group {instance}") | |
448 | #define DCTDESC_LVM_PHYSICAL_VOLUMES _T("Physical volumes in volume group {instance}") | |
ac60d715 | 449 | #define DCTDESC_SYSTEM_INSTALLED_PRODUCTS _T("Installed products") |
92b25da9 | 450 | #define DCTDESC_SYSTEM_OPEN_FILES _T("Open files") |
ad12a86f | 451 | #define DCTDESC_SYSTEM_PROCESSES _T("Processes") |
cc8ce218 | 452 | |
5944946e VK |
453 | /** |
454 | * API for CommSession | |
455 | */ | |
6fbaa926 | 456 | class AbstractCommSession : public RefCountObject |
5944946e VK |
457 | { |
458 | public: | |
9319c166 VK |
459 | virtual bool isMasterServer() = 0; |
460 | virtual bool isControlServer() = 0; | |
d1dfba1a | 461 | virtual bool canAcceptData() = 0; |
0d956dd9 | 462 | virtual bool canAcceptTraps() = 0; |
e13420c1 | 463 | virtual bool canAcceptFileUpdates() = 0; |
e9902466 | 464 | virtual UINT64 getServerId() = 0; |
8c75ad41 | 465 | virtual const InetAddress& getServerAddress() = 0; |
9319c166 | 466 | |
ea3993c8 VK |
467 | virtual bool isIPv6Aware() = 0; |
468 | ||
6fbaa926 VK |
469 | virtual void sendMessage(NXCPMessage *msg) = 0; |
470 | virtual void sendRawMessage(NXCP_MESSAGE *msg) = 0; | |
9319c166 | 471 | virtual bool sendFile(UINT32 requestId, const TCHAR *file, long offset) = 0; |
63ff3c9d | 472 | virtual UINT32 doRequest(NXCPMessage *msg, UINT32 timeout) = 0; |
a1273b42 | 473 | virtual NXCPMessage *doRequestEx(NXCPMessage *msg, UINT32 timeout) = 0; |
6fbaa926 | 474 | virtual UINT32 generateRequestId() = 0; |
9319c166 | 475 | virtual UINT32 openFile(TCHAR* nameOfFile, UINT32 requestId) = 0; |
5944946e VK |
476 | }; |
477 | ||
0f506caa VK |
478 | /** |
479 | * Subagent's parameter information | |
480 | */ | |
6827d635 VK |
481 | typedef struct |
482 | { | |
4687826e | 483 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 484 | LONG (* handler)(const TCHAR *, const TCHAR *, TCHAR *, AbstractCommSession *); |
4687826e VK |
485 | const TCHAR *arg; |
486 | int dataType; // Use DT_DEPRECATED to indicate deprecated parameter | |
487 | TCHAR description[MAX_DB_STRING]; | |
6827d635 VK |
488 | } NETXMS_SUBAGENT_PARAM; |
489 | ||
0f506caa VK |
490 | /** |
491 | * Subagent's push parameter information | |
492 | */ | |
f480bdd4 VK |
493 | typedef struct |
494 | { | |
495 | TCHAR name[MAX_PARAM_NAME]; | |
496 | int dataType; | |
497 | TCHAR description[MAX_DB_STRING]; | |
498 | } NETXMS_SUBAGENT_PUSHPARAM; | |
499 | ||
0f506caa VK |
500 | /** |
501 | * Subagent's list information | |
502 | */ | |
901c96c7 VK |
503 | typedef struct |
504 | { | |
4687826e | 505 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 506 | LONG (* handler)(const TCHAR *, const TCHAR *, StringList *, AbstractCommSession *); |
4687826e | 507 | const TCHAR *arg; |
cb97f4dd | 508 | TCHAR description[MAX_DB_STRING]; |
4687826e VK |
509 | } NETXMS_SUBAGENT_LIST; |
510 | ||
cb97f4dd VK |
511 | /** |
512 | * Subagent's table column information | |
513 | */ | |
514 | typedef struct | |
515 | { | |
516 | TCHAR name[MAX_COLUMN_NAME]; | |
517 | TCHAR displayName[MAX_COLUMN_NAME]; | |
518 | int dataType; | |
519 | bool isInstance; | |
520 | } NETXMS_SUBAGENT_TABLE_COLUMN; | |
521 | ||
0f506caa VK |
522 | /** |
523 | * Subagent's table information | |
524 | */ | |
4687826e VK |
525 | typedef struct |
526 | { | |
527 | TCHAR name[MAX_PARAM_NAME]; | |
060c5a11 | 528 | LONG (* handler)(const TCHAR *, const TCHAR *, Table *, AbstractCommSession *); |
4687826e | 529 | const TCHAR *arg; |
52f5ee00 | 530 | TCHAR instanceColumns[MAX_COLUMN_NAME * MAX_INSTANCE_COLUMNS]; |
cc8ce218 | 531 | TCHAR description[MAX_DB_STRING]; |
cb97f4dd VK |
532 | int numColumns; |
533 | NETXMS_SUBAGENT_TABLE_COLUMN *columns; | |
4687826e | 534 | } NETXMS_SUBAGENT_TABLE; |
901c96c7 | 535 | |
0f506caa VK |
536 | /** |
537 | * Subagent's action information | |
538 | */ | |
37778a1d VK |
539 | typedef struct |
540 | { | |
4687826e | 541 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 542 | LONG (* handler)(const TCHAR *, StringList *, const TCHAR *, AbstractCommSession *); |
4687826e VK |
543 | const TCHAR *arg; |
544 | TCHAR description[MAX_DB_STRING]; | |
37778a1d VK |
545 | } NETXMS_SUBAGENT_ACTION; |
546 | ||
cb97f4dd | 547 | #define NETXMS_SUBAGENT_INFO_MAGIC ((UINT32)0x20150626) |
ded831ac | 548 | |
b368969c | 549 | class NXCPMessage; |
d618c3ae | 550 | |
5944946e VK |
551 | /** |
552 | * Subagent initialization structure | |
553 | */ | |
6827d635 VK |
554 | typedef struct |
555 | { | |
967893bb | 556 | UINT32 magic; // Magic number to check if subagent uses correct version of this structure |
4687826e VK |
557 | TCHAR name[MAX_SUBAGENT_NAME]; |
558 | TCHAR version[32]; | |
559 | BOOL (* init)(Config *); // Called to initialize subagent. Can be NULL. | |
560 | void (* shutdown)(); // Called at subagent unload. Can be NULL. | |
b368969c | 561 | BOOL (* commandHandler)(UINT32 command, NXCPMessage *request, NXCPMessage *response, AbstractCommSession *session); |
967893bb | 562 | UINT32 numParameters; |
4687826e | 563 | NETXMS_SUBAGENT_PARAM *parameters; |
967893bb | 564 | UINT32 numLists; |
4687826e | 565 | NETXMS_SUBAGENT_LIST *lists; |
967893bb | 566 | UINT32 numTables; |
4687826e | 567 | NETXMS_SUBAGENT_TABLE *tables; |
967893bb | 568 | UINT32 numActions; |
4687826e | 569 | NETXMS_SUBAGENT_ACTION *actions; |
967893bb | 570 | UINT32 numPushParameters; |
4687826e | 571 | NETXMS_SUBAGENT_PUSHPARAM *pushParameters; |
6827d635 | 572 | } NETXMS_SUBAGENT_INFO; |
3b376ea0 | 573 | |
0f506caa VK |
574 | /** |
575 | * Inline functions for returning parameters | |
576 | */ | |
a765d97c | 577 | inline void ret_string(TCHAR *rbuf, const TCHAR *value) |
cbcaf8c8 | 578 | { |
a23d8e0d | 579 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); |
cbcaf8c8 VK |
580 | } |
581 | ||
f3387429 VK |
582 | inline void ret_wstring(TCHAR *rbuf, const WCHAR *value) |
583 | { | |
584 | #ifdef UNICODE | |
585 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
586 | #else | |
587 | WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK | WC_DEFAULTCHAR, value, -1, rbuf, MAX_RESULT_LENGTH, NULL, NULL); | |
588 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
589 | #endif | |
590 | } | |
591 | ||
592 | inline void ret_mbstring(TCHAR *rbuf, const char *value) | |
593 | { | |
594 | #ifdef UNICODE | |
595 | MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, value, -1, rbuf, MAX_RESULT_LENGTH); | |
596 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
597 | #else | |
598 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
599 | #endif | |
600 | } | |
601 | ||
0212dc5a | 602 | inline void ret_int(TCHAR *rbuf, LONG value) |
cbcaf8c8 | 603 | { |
66d07089 | 604 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 605 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%ld"), (long)value); |
a23d8e0d | 606 | #else |
6e38075b | 607 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%ld"), (long)value); |
a23d8e0d | 608 | #endif |
cbcaf8c8 VK |
609 | } |
610 | ||
967893bb | 611 | inline void ret_uint(TCHAR *rbuf, UINT32 value) |
cbcaf8c8 | 612 | { |
66d07089 | 613 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 614 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%lu"), (unsigned long)value); |
a23d8e0d | 615 | #else |
6e38075b | 616 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%lu"), (unsigned long)value); |
a23d8e0d | 617 | #endif |
cbcaf8c8 VK |
618 | } |
619 | ||
eb077f61 | 620 | inline void ret_double(TCHAR *rbuf, double value, int digits = 6) |
cbcaf8c8 | 621 | { |
66d07089 | 622 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
eb077f61 | 623 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%1.*f"), digits, value); |
a23d8e0d | 624 | #else |
eb077f61 | 625 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%1.*f"), digits, value); |
a23d8e0d | 626 | #endif |
cbcaf8c8 VK |
627 | } |
628 | ||
018fda4d | 629 | inline void ret_int64(TCHAR *rbuf, INT64 value) |
cbcaf8c8 | 630 | { |
66d07089 | 631 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 632 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64d"), value); |
cbcaf8c8 | 633 | #else /* _WIN32 */ |
ccc34207 | 634 | _sntprintf(rbuf, MAX_RESULT_LENGTH, INT64_FMT, value); |
cbcaf8c8 VK |
635 | #endif /* _WIN32 */ |
636 | } | |
637 | ||
018fda4d | 638 | inline void ret_uint64(TCHAR *rbuf, QWORD value) |
cbcaf8c8 | 639 | { |
66d07089 | 640 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 641 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64u"), value); |
cbcaf8c8 | 642 | #else /* _WIN32 */ |
ccc34207 | 643 | _sntprintf(rbuf, MAX_RESULT_LENGTH, UINT64_FMT, value); |
cbcaf8c8 VK |
644 | #endif /* _WIN32 */ |
645 | } | |
646 | ||
359784de VK |
647 | /** |
648 | * API for subagents | |
649 | */ | |
0e0867c6 | 650 | bool LIBNXAGENT_EXPORTABLE AgentGetParameterArgA(const TCHAR *param, int index, char *arg, int maxSize, bool inBrackets = true); |
651 | bool LIBNXAGENT_EXPORTABLE AgentGetParameterArgW(const TCHAR *param, int index, WCHAR *arg, int maxSize, bool inBrackets = true); | |
f3387429 VK |
652 | #ifdef UNICODE |
653 | #define AgentGetParameterArg AgentGetParameterArgW | |
654 | #else | |
655 | #define AgentGetParameterArg AgentGetParameterArgA | |
656 | #endif | |
657 | ||
359784de | 658 | void LIBNXAGENT_EXPORTABLE AgentWriteLog(int logLevel, const TCHAR *format, ...) |
6e383343 | 659 | #if !defined(UNICODE) && (defined(__GNUC__) || defined(__clang__)) |
640b6719 VK |
660 | __attribute__ ((format(printf, 2, 3))) |
661 | #endif | |
662 | ; | |
359784de VK |
663 | void LIBNXAGENT_EXPORTABLE AgentWriteLog2(int logLevel, const TCHAR *format, va_list args); |
664 | void LIBNXAGENT_EXPORTABLE AgentWriteDebugLog(int level, const TCHAR *format, ...) | |
6e383343 | 665 | #if !defined(UNICODE) && (defined(__GNUC__) || defined(__clang__)) |
640b6719 VK |
666 | __attribute__ ((format(printf, 2, 3))) |
667 | #endif | |
668 | ; | |
359784de VK |
669 | void LIBNXAGENT_EXPORTABLE AgentWriteDebugLog2(int level, const TCHAR *format, va_list args); |
670 | ||
671 | void LIBNXAGENT_EXPORTABLE AgentSendTrap(UINT32 dwEvent, const TCHAR *eventName, const char *pszFormat, ...); | |
672 | void LIBNXAGENT_EXPORTABLE AgentSendTrap2(UINT32 dwEvent, const TCHAR *eventName, int nCount, TCHAR **ppszArgList); | |
673 | ||
34b9a3e7 | 674 | bool LIBNXAGENT_EXPORTABLE AgentEnumerateSessions(EnumerationCallbackResult (* callback)(AbstractCommSession *, void *), void *data); |
6fbaa926 | 675 | AbstractCommSession LIBNXAGENT_EXPORTABLE *AgentFindServerSession(UINT64 serverId); |
359784de VK |
676 | |
677 | bool LIBNXAGENT_EXPORTABLE AgentSendFileToServer(void *session, UINT32 requestId, const TCHAR *file, long offset); | |
678 | ||
679 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterData(const TCHAR *parameter, const TCHAR *value); | |
680 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataInt32(const TCHAR *parameter, LONG value); | |
681 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataUInt32(const TCHAR *parameter, UINT32 value); | |
682 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataInt64(const TCHAR *parameter, INT64 value); | |
683 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataUInt64(const TCHAR *parameter, QWORD value); | |
684 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataDouble(const TCHAR *parameter, double value); | |
685 | ||
686 | CONDITION LIBNXAGENT_EXPORTABLE AgentGetShutdownCondition(); | |
687 | bool LIBNXAGENT_EXPORTABLE AgentSleepAndCheckForShutdown(UINT32 sleepTime); | |
359784de | 688 | const TCHAR LIBNXAGENT_EXPORTABLE *AgentGetDataDirectory(); |
23d3d35d | 689 | |
bb48198e | 690 | DB_HANDLE LIBNXAGENT_EXPORTABLE AgentGetLocalDatabaseHandle(); |
f1cfab13 | 691 | |
ac7a2e92 TD |
692 | TCHAR LIBNXAGENT_EXPORTABLE *ReadRegistryAsString(const TCHAR *attr, TCHAR *buffer = NULL, int bufSize = 0, const TCHAR *defaultValue = NULL); |
693 | INT32 LIBNXAGENT_EXPORTABLE ReadRegistryAsInt32(const TCHAR *attr, INT32 defaultValue); | |
694 | INT64 LIBNXAGENT_EXPORTABLE ReadRegistryAsInt64(const TCHAR *attr, INT64 defaultValue); | |
695 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, const TCHAR *value); | |
f1cfab13 VK |
696 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, INT32 value); |
697 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, INT64 value); | |
ac7a2e92 | 698 | bool LIBNXAGENT_EXPORTABLE DeleteRegistryEntry(const TCHAR *attr); |
bb48198e | 699 | |
cbcaf8c8 | 700 | #endif /* _nms_agent_h_ */ |