VirtualBox

source: vbox/trunk/include/VBox/log.h@ 21217

Last change on this file since 21217 was 19315, checked in by vboxsync, 15 years ago

Logging: introducing NAT and NET log groups

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.0 KB
Line 
1/** @file
2 * VirtualBox - Logging.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_log_h
31#define ___VBox_log_h
32
33/*
34 * Set the default loggroup.
35 */
36#ifndef LOG_GROUP
37# define LOG_GROUP LOG_GROUP_DEFAULT
38#endif
39
40#include <iprt/log.h>
41
42
43/** @defgroup grp_rt_vbox_log VirtualBox Logging
44 * @ingroup grp_rt_vbox
45 * @{
46 */
47
48/** PC port for debug output */
49#define RTLOG_DEBUG_PORT 0x504
50
51/**
52 * VirtualBox Logging Groups.
53 * (Remember to update LOGGROUP_NAMES!)
54 *
55 * @remark It should be pretty obvious, but just to have
56 * mentioned it, the values are sorted alphabetically (using the
57 * english alphabet) except for _DEFAULT which is always first.
58 *
59 * If anyone might be wondering what the alphabet looks like:
60 * A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
61 */
62typedef enum LOGGROUP
63{
64 /** The default VBox group. */
65 LOG_GROUP_DEFAULT = RTLOGGROUP_FIRST_USER,
66 /** CFGM group. */
67 LOG_GROUP_CFGM,
68 /** CPUM group. */
69 LOG_GROUP_CPUM,
70 /** CSAM group. */
71 LOG_GROUP_CSAM,
72 /** Debug Console group. */
73 LOG_GROUP_DBGC,
74 /** DBGF group. */
75 LOG_GROUP_DBGF,
76 /** DBGF info group. */
77 LOG_GROUP_DBGF_INFO,
78 /** The debugger gui. */
79 LOG_GROUP_DBGG,
80 /** Generic Device group. */
81 LOG_GROUP_DEV,
82 /** ACPI Device group. */
83 LOG_GROUP_DEV_ACPI,
84 /** AHCI Device group. */
85 LOG_GROUP_DEV_AHCI,
86 /** APIC Device group. */
87 LOG_GROUP_DEV_APIC,
88 /** Audio Device group. */
89 LOG_GROUP_DEV_AUDIO,
90 /** BusLogic SCSI host adapter group. */
91 LOG_GROUP_DEV_BUSLOGIC,
92 /** DMA Controller group. */
93 LOG_GROUP_DEV_DMA,
94 /** Gigabit Ethernet Device group. */
95 LOG_GROUP_DEV_E1000,
96 /** Extensible Firmware Interface Device group. */
97 LOG_GROUP_DEV_EFI,
98 /** Floppy Controller Device group. */
99 LOG_GROUP_DEV_FDC,
100 /** High Precision Event Timer Device group. */
101 LOG_GROUP_DEV_HPET,
102 /** IDE Device group. */
103 LOG_GROUP_DEV_IDE,
104 /** The internal networking IP stack Device group. */
105 LOG_GROUP_DEV_INIP,
106 /** KeyBoard Controller Device group. */
107 LOG_GROUP_DEV_KBD,
108 /** Low Pin Count Device group. */
109 LOG_GROUP_DEV_LPC,
110 /** LsiLogic SCSI controller Device group. */
111 LOG_GROUP_DEV_LSILOGICSCSI,
112 /** NE2000 Device group. */
113 LOG_GROUP_DEV_NE2000,
114 /** Parallel Device group */
115 LOG_GROUP_DEV_PARALLEL,
116 /** PC Device group. */
117 LOG_GROUP_DEV_PC,
118 /** PC Architecture Device group. */
119 LOG_GROUP_DEV_PC_ARCH,
120 /** PC BIOS Device group. */
121 LOG_GROUP_DEV_PC_BIOS,
122 /** PCI Device group. */
123 LOG_GROUP_DEV_PCI,
124 /** PCNet Device group. */
125 LOG_GROUP_DEV_PCNET,
126 /** PIC Device group. */
127 LOG_GROUP_DEV_PIC,
128 /** PIT Device group. */
129 LOG_GROUP_DEV_PIT,
130 /** RTC Device group. */
131 LOG_GROUP_DEV_RTC,
132 /** Serial Device group */
133 LOG_GROUP_DEV_SERIAL,
134 /** System Management Controller Device group. */
135 LOG_GROUP_DEV_SMC,
136 /** USB Device group. */
137 LOG_GROUP_DEV_USB,
138 /** VGA Device group. */
139 LOG_GROUP_DEV_VGA,
140 /** VMM Device group. */
141 LOG_GROUP_DEV_VMM,
142 /** VMM Device group for backdoor logging. */
143 LOG_GROUP_DEV_VMM_BACKDOOR,
144 /** VMM Device group for logging guest backdoor logging to stderr. */
145 LOG_GROUP_DEV_VMM_STDERR,
146 /** Disassembler group. */
147 LOG_GROUP_DIS,
148 /** Generic driver group. */
149 LOG_GROUP_DRV,
150 /** ACPI driver group */
151 LOG_GROUP_DRV_ACPI,
152 /** Block driver group. */
153 LOG_GROUP_DRV_BLOCK,
154 /** Char driver group. */
155 LOG_GROUP_DRV_CHAR,
156 /** Floppy media driver group. */
157 LOG_GROUP_DRV_FLOPPY,
158 /** Host Base block driver group. */
159 LOG_GROUP_DRV_HOST_BASE,
160 /** Host DVD block driver group. */
161 LOG_GROUP_DRV_HOST_DVD,
162 /** Host floppy block driver group. */
163 LOG_GROUP_DRV_HOST_FLOPPY,
164 /** Host Parallel Driver group */
165 LOG_GROUP_DRV_HOST_PARALLEL,
166 /** Host Serial Driver Group */
167 LOG_GROUP_DRV_HOST_SERIAL,
168 /** The internal networking transport driver group. */
169 LOG_GROUP_DRV_INTNET,
170 /** iSCSI Initiator driver group. */
171 LOG_GROUP_DRV_ISCSI,
172 /** iSCSI TCP transport driver group. */
173 LOG_GROUP_DRV_ISCSI_TRANSPORT_TCP,
174 /** ISO (CD/DVD) media driver group. */
175 LOG_GROUP_DRV_ISO,
176 /** Keyboard Queue driver group. */
177 LOG_GROUP_DRV_KBD_QUEUE,
178 /** lwIP IP stack driver group. */
179 LOG_GROUP_DRV_LWIP,
180 /** Mouse Queue driver group. */
181 LOG_GROUP_DRV_MOUSE_QUEUE,
182 /** Named Pipe stream driver group. */
183 LOG_GROUP_DRV_NAMEDPIPE,
184 /** NAT network transport driver group */
185 LOG_GROUP_DRV_NAT,
186 /** Raw image driver group */
187 LOG_GROUP_DRV_RAW_IMAGE,
188 /** SCSI driver group. */
189 LOG_GROUP_DRV_SCSI,
190 /** Host SCSI driver group. */
191 LOG_GROUP_DRV_SCSIHOST,
192 /** Async transport driver group */
193 LOG_GROUP_DRV_TRANSPORT_ASYNC,
194 /** TUN network transport driver group */
195 LOG_GROUP_DRV_TUN,
196 /** USB Proxy driver group. */
197 LOG_GROUP_DRV_USBPROXY,
198 /** VBoxHDD media driver group. */
199 LOG_GROUP_DRV_VBOXHDD,
200 /** VBox HDD container media driver group. */
201 LOG_GROUP_DRV_VD,
202 /** Virtual Switch transport driver group */
203 LOG_GROUP_DRV_VSWITCH,
204 /** VUSB driver group */
205 LOG_GROUP_DRV_VUSB,
206 /** EM group. */
207 LOG_GROUP_EM,
208 /** GMM group. */
209 LOG_GROUP_GMM,
210 /** GUI group. */
211 LOG_GROUP_GUI,
212 /** GVMM group. */
213 LOG_GROUP_GVMM,
214 /** HGCM group */
215 LOG_GROUP_HGCM,
216 /** HWACCM group. */
217 LOG_GROUP_HWACCM,
218 /** IOM group. */
219 LOG_GROUP_IOM,
220 /** XPCOM IPC group. */
221 LOG_GROUP_IPC,
222 /** Main group. */
223 LOG_GROUP_MAIN,
224 /** Misc. group intended for external use only. */
225 LOG_GROUP_MISC,
226 /** MM group. */
227 LOG_GROUP_MM,
228 /** MM group. */
229 LOG_GROUP_MM_HEAP,
230 /** MM group. */
231 LOG_GROUP_MM_HYPER,
232 /** MM Hypervisor Heap group. */
233 LOG_GROUP_MM_HYPER_HEAP,
234 /** MM Physical/Ram group. */
235 LOG_GROUP_MM_PHYS,
236 /** MM Page pool group. */
237 LOG_GROUP_MM_POOL,
238 /** The NAT service group */
239 LOG_GROUP_NAT_SERVICE,
240 /** The network adaptor driver group. */
241 LOG_GROUP_NET_ADP_DRV,
242 /** The network filter driver group. */
243 LOG_GROUP_NET_FLT_DRV,
244 /** The common network service group */
245 LOG_GROUP_NET_SERVICE,
246 /** PATM group. */
247 LOG_GROUP_PATM,
248 /** PDM group. */
249 LOG_GROUP_PDM,
250 /** PDM Async completion group. */
251 LOG_GROUP_PDM_ASYNC_COMPLETION,
252 /** PDM Device group. */
253 LOG_GROUP_PDM_DEVICE,
254 /** PDM Driver group. */
255 LOG_GROUP_PDM_DRIVER,
256 /** PDM Loader group. */
257 LOG_GROUP_PDM_LDR,
258 /** PDM Loader group. */
259 LOG_GROUP_PDM_QUEUE,
260 /** PGM group. */
261 LOG_GROUP_PGM,
262 /** PGM physical group. */
263 LOG_GROUP_PGM_PHYS,
264 /** PGM physical access group. */
265 LOG_GROUP_PGM_PHYS_ACCESS,
266 /** PGM shadow page pool group. */
267 LOG_GROUP_PGM_POOL,
268 /** REM group. */
269 LOG_GROUP_REM,
270 /** REM disassembly handler group. */
271 LOG_GROUP_REM_DISAS,
272 /** REM access handler group. */
273 LOG_GROUP_REM_HANDLER,
274 /** REM I/O port access group. */
275 LOG_GROUP_REM_IOPORT,
276 /** REM MMIO access group. */
277 LOG_GROUP_REM_MMIO,
278 /** REM Printf. */
279 LOG_GROUP_REM_PRINTF,
280 /** REM running group. */
281 LOG_GROUP_REM_RUN,
282 /** SELM group. */
283 LOG_GROUP_SELM,
284 /** Shared clipboard host service group. */
285 LOG_GROUP_SHARED_CLIPBOARD,
286 /** Chromium OpenGL host service group. */
287 LOG_GROUP_SHARED_CROPENGL,
288 /** Shared folders host service group. */
289 LOG_GROUP_SHARED_FOLDERS,
290 /** OpenGL host service group. */
291 LOG_GROUP_SHARED_OPENGL,
292 /** The internal networking service group. */
293 LOG_GROUP_SRV_INTNET,
294 /** SSM group. */
295 LOG_GROUP_SSM,
296 /** STAM group. */
297 LOG_GROUP_STAM,
298 /** SUP group. */
299 LOG_GROUP_SUP,
300 /** SUPport driver group. */
301 LOG_GROUP_SUP_DRV,
302 /** TM group. */
303 LOG_GROUP_TM,
304 /** TRPM group. */
305 LOG_GROUP_TRPM,
306 /** USB driver group. */
307 LOG_GROUP_USB_DRV,
308 /** USBFilter group. */
309 LOG_GROUP_USB_FILTER,
310 /** Generic virtual disk layer. */
311 LOG_GROUP_VD,
312 /** iSCSI virtual disk backend. */
313 LOG_GROUP_VD_ISCSI,
314 /** Raw virtual disk backend. */
315 LOG_GROUP_VD_RAW,
316 /** VDI virtual disk backend. */
317 LOG_GROUP_VD_VDI,
318 /** VHD virtual disk backend. */
319 LOG_GROUP_VD_VHD,
320 /** VMDK virtual disk backend. */
321 LOG_GROUP_VD_VMDK,
322 /** VM group. */
323 LOG_GROUP_VM,
324 /** VMM group. */
325 LOG_GROUP_VMM,
326 /** VRDP group */
327 LOG_GROUP_VRDP
328 /* !!!ALPHABETICALLY!!! */
329} VBOX_LOGGROUP;
330
331
332/** @def VBOX_LOGGROUP_NAMES
333 * VirtualBox Logging group names.
334 *
335 * Must correspond 100% to LOGGROUP!
336 * Don't forget commas!
337 *
338 * @remark It should be pretty obvious, but just to have
339 * mentioned it, the values are sorted alphabetically (using the
340 * english alphabet) except for _DEFAULT which is always first.
341 *
342 * If anyone might be wondering what the alphabet looks like:
343 * a b c d e f g h i j k l m n o p q r s t u v w x y z
344 */
345#define VBOX_LOGGROUP_NAMES \
346{ \
347 RT_LOGGROUP_NAMES, \
348 "DEFAULT", \
349 "CFGM", \
350 "CPUM", \
351 "CSAM", \
352 "DBGC", \
353 "DBGF", \
354 "DBGF_INFO", \
355 "DBGG", \
356 "DEV", \
357 "DEV_ACPI", \
358 "DEV_AHCI", \
359 "DEV_APIC", \
360 "DEV_AUDIO", \
361 "DEV_BUSLOGIC", \
362 "DEV_DMA", \
363 "DEV_E1000", \
364 "DEV_EFI", \
365 "DEV_FDC", \
366 "DEV_HPET", \
367 "DEV_IDE", \
368 "DEV_INIP", \
369 "DEV_KBD", \
370 "DEV_LPC", \
371 "DEV_LSILOGICSCSI", \
372 "DEV_NE2000", \
373 "DEV_PARALLEL", \
374 "DEV_PC", \
375 "DEV_PC_ARCH", \
376 "DEV_PC_BIOS", \
377 "DEV_PCI", \
378 "DEV_PCNET", \
379 "DEV_PIC", \
380 "DEV_PIT", \
381 "DEV_RTC", \
382 "DEV_SERIAL", \
383 "DEV_SMC", \
384 "DEV_USB", \
385 "DEV_VGA", \
386 "DEV_VMM", \
387 "DEV_VMM_BACKDOOR", \
388 "DEV_VMM_STDERR",\
389 "DIS", \
390 "DRV", \
391 "DRV_ACPI", \
392 "DRV_BLOCK", \
393 "DRV_CHAR", \
394 "DRV_FLOPPY", \
395 "DRV_HOST_BASE", \
396 "DRV_HOST_DVD", \
397 "DRV_HOST_FLOPPY", \
398 "DRV_HOST_PARALLEL", \
399 "DRV_HOST_SERIAL", \
400 "DRV_INTNET", \
401 "DRV_ISCSI", \
402 "DRV_ISCSI_TRANSPORT_TCP", \
403 "DRV_ISO", \
404 "DRV_KBD_QUEUE", \
405 "DRV_LWIP", \
406 "DRV_MOUSE_QUEUE", \
407 "DRV_NAMEDPIPE", \
408 "DRV_NAT", \
409 "DRV_RAW_IMAGE", \
410 "DRV_SCSI", \
411 "DRV_SCSIHOST", \
412 "DRV_TRANSPORT_ASYNC", \
413 "DRV_TUN", \
414 "DRV_USBPROXY", \
415 "DRV_VBOXHDD", \
416 "DRV_VD", \
417 "DRV_VSWITCH", \
418 "DRV_VUSB", \
419 "EM", \
420 "GMM", \
421 "GUI", \
422 "GVMM", \
423 "HGCM", \
424 "HWACCM", \
425 "IOM", \
426 "IPC", \
427 "MAIN", \
428 "MISC", \
429 "MM", \
430 "MM_HEAP", \
431 "MM_HYPER", \
432 "MM_HYPER_HEAP",\
433 "MM_PHYS", \
434 "MM_POOL", \
435 "NAT_SERVICE", \
436 "NET_ADP_DRV", \
437 "NET_FLT_DRV", \
438 "NET_SERVICE", \
439 "PATM", \
440 "PDM", \
441 "PDM_ASYNC_COMPLETION", \
442 "PDM_DEVICE", \
443 "PDM_DRIVER", \
444 "PDM_LDR", \
445 "PDM_QUEUE", \
446 "PGM", \
447 "PGM_PHYS", \
448 "PGM_PHYS_ACCESS",\
449 "PGM_POOL", \
450 "REM", \
451 "REM_DISAS", \
452 "REM_HANDLER", \
453 "REM_IOPORT", \
454 "REM_MMIO", \
455 "REM_PRINTF", \
456 "REM_RUN", \
457 "SELM", \
458 "SHARED_CLIPBOARD",\
459 "SHARED_CROPENGL",\
460 "SHARED_FOLDERS",\
461 "SHARED_OPENGL",\
462 "SRV_INTNET", \
463 "SSM", \
464 "STAM", \
465 "SUP", \
466 "SUP_DRV", \
467 "TM", \
468 "TRPM", \
469 "USB_DRV", \
470 "USB_FILTER", \
471 "VD", \
472 "VD_ISCSI", \
473 "VD_RAW", \
474 "VD_VDI", \
475 "VD_VHD", \
476 "VD_VMDK", \
477 "VM", \
478 "VMM", \
479 "VRDP", \
480}
481
482/** @} */
483#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use