os/kernelhwsrv/kernel/eka/include/e32kpan.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\e32kpan.h
sl@0
    15
// Kernel-generated panic codes
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __E32KPAN_H__
sl@0
    20
#define __E32KPAN_H__
sl@0
    21
#include <e32def.h>
sl@0
    22
sl@0
    23
/**
sl@0
    24
@publishedAll
sl@0
    25
@released
sl@0
    26
sl@0
    27
These panics represent program errors detected by the Kernel.
sl@0
    28
Typically, they are caused by passing bad or contradictory parameters
sl@0
    29
to functions. Threads that cause exceptions also raise a KERN-EXEC type panic.
sl@0
    30
*/
sl@0
    31
enum TKernelPanic
sl@0
    32
    {
sl@0
    33
    
sl@0
    34
    /**
sl@0
    35
    This panic is raised when the Kernel cannot find an object in
sl@0
    36
    the object index for the current process, or current thread, using
sl@0
    37
    a specified object index number (the raw handle number).
sl@0
    38
    */
sl@0
    39
	EBadHandle=0,
sl@0
    40
	
sl@0
    41
	/**
sl@0
    42
	This is a general panic raised as a result of attempting 
sl@0
    43
	some unauthorised activity such as trying to suspend a thread,
sl@0
    44
	or trying to set the priority of a thread, when not authorised to do so.
sl@0
    45
	*/
sl@0
    46
	EAccessDenied=1,
sl@0
    47
	
sl@0
    48
	/**
sl@0
    49
	This panic is raised by the kernel when opening a kernel side object,
sl@0
    50
	a DObject type, and the fullname is invalid.
sl@0
    51
	*/
sl@0
    52
	EBadName=2,
sl@0
    53
	
sl@0
    54
	/**
sl@0
    55
	This panic is raised when an unhandled exception occurs.
sl@0
    56
	Exceptions have many causes, but the most common are access violations
sl@0
    57
	caused, for example, by dreferencing NULL.
sl@0
    58
	
sl@0
    59
	Among other possible causes are:
sl@0
    60
	general protection faults, executing an invalid instruction,
sl@0
    61
	alignment checks, etc.
sl@0
    62
	*/
sl@0
    63
	ECausedException=3,
sl@0
    64
	
sl@0
    65
	/**
sl@0
    66
	Not used.
sl@0
    67
	*/
sl@0
    68
	ECompletion=4,
sl@0
    69
	
sl@0
    70
	/**
sl@0
    71
	Not used.
sl@0
    72
	*/
sl@0
    73
	ELeaveWithoutTrap=5,
sl@0
    74
	
sl@0
    75
	/**
sl@0
    76
	This panic is raised by the kernel when a handle to a code segment
sl@0
    77
	is invalid.
sl@0
    78
	*/
sl@0
    79
	EBadCodeSegHandle=6,
sl@0
    80
	
sl@0
    81
	/**
sl@0
    82
	Not used.
sl@0
    83
	*/
sl@0
    84
	ESegmentWriteOutOfRange=7,
sl@0
    85
	
sl@0
    86
	/**
sl@0
    87
	Not used.
sl@0
    88
	*/
sl@0
    89
	EChunkSizeTooBig=8,
sl@0
    90
	
sl@0
    91
	/**
sl@0
    92
	This is a general panic raised by the kernel when an attempt
sl@0
    93
	is made to issue a request when one is already outstanding, and only one
sl@0
    94
    outstanding request is permitted at any one time.
sl@0
    95
	*/
sl@0
    96
	ERequestAlreadyPending=9,
sl@0
    97
	
sl@0
    98
	/**
sl@0
    99
	This panic is raised by the Request() member function of
sl@0
   100
	the DLogicalChannel() kernel object when the request number passed
sl@0
   101
	to the function is smaller than the permitted minimum.
sl@0
   102
	
sl@0
   103
	@see DLogicalChannel::EMinRequestId
sl@0
   104
	*/
sl@0
   105
	ERequestNoInvalid=10,
sl@0
   106
	
sl@0
   107
	/**
sl@0
   108
	This panic is raised when creating a logical channel, and the unit number
sl@0
   109
	is outside the permitted range.
sl@0
   110
	
sl@0
   111
	If unit numbers are not permmitted, the unit number value
sl@0
   112
	must be KNullUnit.
sl@0
   113
	If unit numbers are permitted, the unit number value must
sl@0
   114
	be less than KMaxUnits.
sl@0
   115
	*/
sl@0
   116
	EBadUnitNumber=11,
sl@0
   117
	
sl@0
   118
	/**
sl@0
   119
	This panic is raised by the kernel if an event capture
sl@0
   120
	hook has already been designated.
sl@0
   121
	*/
sl@0
   122
	EEventAlreadyCaptured=12,
sl@0
   123
	
sl@0
   124
	/**
sl@0
   125
	This panic is raised by the kernel if the current thread is not
sl@0
   126
	the designated event capture hook.
sl@0
   127
	*/
sl@0
   128
	EEventNotCaptured=13,
sl@0
   129
	
sl@0
   130
	/**
sl@0
   131
	This panic is raised when an attempt is made to set the priority of
sl@0
   132
	a thread or process to an illegal value.
sl@0
   133
	*/
sl@0
   134
	EBadPriority=14,
sl@0
   135
	
sl@0
   136
	/**
sl@0
   137
	This panic is raised when a timer event is requested from an asynchronous
sl@0
   138
	timer service, an RTimer, and a timer event is already outstanding.
sl@0
   139
	It is caused by calling either the At(), After() or Lock() member functions
sl@0
   140
	after a previous call to any of these functions but before the timer event
sl@0
   141
	requested by those functions has completed.
sl@0
   142
	*/
sl@0
   143
	ETimerAlreadyPending=15,
sl@0
   144
	
sl@0
   145
	/**
sl@0
   146
	Not used.
sl@0
   147
	*/
sl@0
   148
	EAlreadyLoggedOn=16,
sl@0
   149
	
sl@0
   150
	/**
sl@0
   151
	The panic is raised if kernel heap checking has failed.
sl@0
   152
	*/
sl@0
   153
	EFailedKernelHeapCheck=17,
sl@0
   154
	
sl@0
   155
	/**
sl@0
   156
	Not used.
sl@0
   157
	*/
sl@0
   158
	ERequestFromWrongThread=18,
sl@0
   159
sl@0
   160
    /**
sl@0
   161
    This panic is raised by the Kernel when a server program issues a request
sl@0
   162
    to receive a message, i.e. when it calls the Receive() member function
sl@0
   163
    of RServer, the handle to the Kernel side server object.
sl@0
   164
    
sl@0
   165
    The panic occurs when a receive message request has previously been made
sl@0
   166
    and is still outstanding.
sl@0
   167
    */
sl@0
   168
	EMesAlreadyPending=19,
sl@0
   169
	
sl@0
   170
	/**
sl@0
   171
	This panic is raised by the Kernel when a request for an event
sl@0
   172
	(as originated by a call to UserSvr::RequestEvent()) is made while
sl@0
   173
	a previously made request is still outstanding.
sl@0
   174
	*/
sl@0
   175
	EEventRequestPending=20,
sl@0
   176
	
sl@0
   177
	/**
sl@0
   178
	Not used.
sl@0
   179
	*/
sl@0
   180
	EIllegalWsProcess=21,
sl@0
   181
	
sl@0
   182
	/**
sl@0
   183
	Not used.
sl@0
   184
	*/
sl@0
   185
	EHardwareNotAvailable=22,
sl@0
   186
	
sl@0
   187
	/**
sl@0
   188
	This panic is raised when attempting to create a session with a server,
sl@0
   189
	and access is been denied.
sl@0
   190
	*/
sl@0
   191
	EUnsharableSession=23,
sl@0
   192
	
sl@0
   193
	/**
sl@0
   194
	This panic is raised when writing global DLL data, and the length of
sl@0
   195
	data to be written is greater than the space available.
sl@0
   196
	*/
sl@0
   197
	EDesOverflow=24,
sl@0
   198
	
sl@0
   199
	/**
sl@0
   200
	This panic is raised when searching for objects, using the internal
sl@0
   201
	function TFindHandleBase::NextObject(), and an invalid object type
sl@0
   202
	is specified.
sl@0
   203
	*/
sl@0
   204
	EBadObjectType=25,
sl@0
   205
	
sl@0
   206
	/**
sl@0
   207
	This panic is raised by kernel side code that implements heap debugging
sl@0
   208
	behaviour, when a specific debug request is not recognised.
sl@0
   209
	*/
sl@0
   210
	EBadKernelHeapDebugFunction=26,
sl@0
   211
	
sl@0
   212
	/**
sl@0
   213
	This panic is raised when an executive call is made with an invalid call
sl@0
   214
	number.
sl@0
   215
	*/
sl@0
   216
	EInvalidSystemCall=27,
sl@0
   217
	
sl@0
   218
	/**
sl@0
   219
	Not used.
sl@0
   220
	*/
sl@0
   221
	ESetSessionPtrInvalidMessage=28,
sl@0
   222
	
sl@0
   223
	/**
sl@0
   224
	Not used.
sl@0
   225
	*/
sl@0
   226
	ECompleteDisconnectInvalidMessage=29,
sl@0
   227
	
sl@0
   228
	/**
sl@0
   229
	This panic is raised when an attempt is being made to send 
sl@0
   230
	a synchronous message to a server more than once, using
sl@0
   231
	the current thread's dedicated synchronous message.
sl@0
   232
	*/
sl@0
   233
	ESyncMsgSentTwice=30,
sl@0
   234
	
sl@0
   235
	/**
sl@0
   236
	Not used.
sl@0
   237
	*/
sl@0
   238
	EAutoAttachFailed=31,
sl@0
   239
	
sl@0
   240
	/**
sl@0
   241
	This panic is called by DProcess::Resume() when trying to resume
sl@0
   242
	a process that is still being loaded.
sl@0
   243
	*/
sl@0
   244
	EProcessNotLoaded=32,
sl@0
   245
	
sl@0
   246
	/**
sl@0
   247
    This panic is raised in a call to Kern::KUDesInfo(), Kern::KUDesPut() etc
sl@0
   248
    when an invalid descriptor is passed.
sl@0
   249
	*/
sl@0
   250
	EKUDesInfoInvalidType=33,
sl@0
   251
	
sl@0
   252
	/**
sl@0
   253
	This panic is raised in a call to Kern::KUDesSetLength() & Kern::KUDesPut()
sl@0
   254
	when the descriptor passed to it is not a modifiable type.
sl@0
   255
	*/
sl@0
   256
	EKUDesSetLengthInvalidType=34,
sl@0
   257
	
sl@0
   258
	/**
sl@0
   259
	This panic is raised in a call to Kern::KUDesSetLength() & Kern::KUDesPut()
sl@0
   260
	when the length of the source descriptor is longer than the length of
sl@0
   261
	the target descriptor.
sl@0
   262
	*/
sl@0
   263
	EKUDesSetLengthOverflow=35,
sl@0
   264
	
sl@0
   265
	/**
sl@0
   266
	This panic is raised by the kernel side code that implements the setting
sl@0
   267
	of the currency symbol when the length of the currency symbol is 
sl@0
   268
    greater than KMaxCurrencySymbol. 
sl@0
   269
	*/
sl@0
   270
	EBadParameter=36,
sl@0
   271
	
sl@0
   272
	/**
sl@0
   273
	This panic is raised by kernel code when it tries to acquire the process
sl@0
   274
	DLL lock just before a load, and the wait DLL lock is invalid.
sl@0
   275
	*/
sl@0
   276
	EWaitDllLockInvalid=37,
sl@0
   277
	
sl@0
   278
	/**
sl@0
   279
	This panic is raised by internal kernel code when an illegal attempt
sl@0
   280
	is made to attatch to a library.
sl@0
   281
	*/
sl@0
   282
	ELibraryAttachInvalid=38,
sl@0
   283
	
sl@0
   284
	/**
sl@0
   285
	This panic is raised when extracting a list of DLL entry points
sl@0
   286
	and the number exceeds the maximum permitted.
sl@0
   287
	*/
sl@0
   288
	ETooManyEntryPoints=39,
sl@0
   289
	
sl@0
   290
	/**
sl@0
   291
	This panic is raised by internal kernel code when an illegal attempt
sl@0
   292
	is made to detach a library.
sl@0
   293
	*/
sl@0
   294
	ELibraryDetachInvalid=40,
sl@0
   295
	
sl@0
   296
	/**
sl@0
   297
	This panic is raised by internal kernel code when an illegal attempt
sl@0
   298
	is made to attach to a library.
sl@0
   299
	*/
sl@0
   300
	ELibraryAttachedInvalid=41,
sl@0
   301
sl@0
   302
	/**
sl@0
   303
	This panic is raised by internal kernel code when an illegal attempt
sl@0
   304
	is made to detach a library.
sl@0
   305
	*/
sl@0
   306
	ELibraryDetachedInvalid=42,
sl@0
   307
sl@0
   308
	/**
sl@0
   309
	This panic is raised by kernel code when it tries to release the process DLL lock
sl@0
   310
	when a load fails, and the release DLL lock is invalid.
sl@0
   311
	*/
sl@0
   312
	EReleaseDllLockInvalid=43,
sl@0
   313
	
sl@0
   314
	/**
sl@0
   315
	This panic is raised when a bad message handle is passed to the kernel.
sl@0
   316
	This usually occurs when using methods on the RMessagePtr2 or RMessage2 classes
sl@0
   317
	after the message has been completed; or when the iHandle data member has become
sl@0
   318
	corrupted.
sl@0
   319
	*/
sl@0
   320
	EBadMessageHandle=44,
sl@0
   321
	
sl@0
   322
	/**
sl@0
   323
	Not used.
sl@0
   324
	*/
sl@0
   325
	EInvalidMessageParameter=45,
sl@0
   326
	
sl@0
   327
	/**
sl@0
   328
	This panic can be raised as a result of a call to one of a large
sl@0
   329
	number of functions. In general, the panic indicates an attempt to perform an
sl@0
   330
	operation on a thread or process by code running in another process - violating
sl@0
   331
	the security principle of process isolation. 
sl@0
   332
		
sl@0
   333
	There are exceptions to this general rule, for example, where the
sl@0
   334
	panic is raised because the calling process has insufficient capability. The
sl@0
   335
	precise reason is stated with the function(s). 
sl@0
   336
	
sl@0
   337
	-# The panic is raised on a call to the following function if the
sl@0
   338
	   process owning the thread performing the call is not the creator of the target
sl@0
   339
	   process or, if a handle is specified, the handle is not local.
sl@0
   340
	   - RProcess::SetParameter()
sl@0
   341
	   .
sl@0
   342
	-# The panic is raised on a call to the following functions if the
sl@0
   343
	   process owning the thread performing the call is not the same as the target
sl@0
   344
	   process.\n
sl@0
   345
	   - RProcess::Kill()
sl@0
   346
	   - RProcess::Terminate()
sl@0
   347
	   - RProcess::Panic()
sl@0
   348
	   - RProcess::SetJustInTime()
sl@0
   349
	   - RProcess::Resume()
sl@0
   350
	   - RThread::Kill()
sl@0
   351
	   - RThread::Terminate()
sl@0
   352
	   - RThread::Panic()
sl@0
   353
	   - RThread::Suspend()
sl@0
   354
	   - RThread::Resume()
sl@0
   355
	   - RThread::SetPriority()		 
sl@0
   356
	   - RThread::RequestComplete()
sl@0
   357
	   - RThread::RequestSignal()		 
sl@0
   358
	   .  
sl@0
   359
	   NOTE: the creator of a new process can kill or panic the new
sl@0
   360
	   process, change the new process priority and set the new process startup
sl@0
   361
	   parameters until the process is resumed (which the creator can also do). After
sl@0
   362
	   the new process has been resumed, then it becomes totally independent of its
sl@0
   363
	   creator, and any attempt to panic it, kill it etc will raise the KERN-EXEC 46
sl@0
   364
	   panic.
sl@0
   365
	-# The panic is raised on call to the following (Symbian partner
sl@0
   366
	   only) functions if the calling process does not have the PowerMgmt
sl@0
   367
	   capability (TCapability::ECapabilityPowerMgmt): 
sl@0
   368
	   - Power::PowerDown()
sl@0
   369
	   - Power::EnableWakeupEvents()
sl@0
   370
	   - Power::DisableWakeupEvents()
sl@0
   371
	   - Power::RequestWakeupEventNotification()
sl@0
   372
	   - Power::CancelWakeupEventNotification()
sl@0
   373
	   .
sl@0
   374
	-# The panic is raised on call to the following functions if the
sl@0
   375
	   calling process does not have the WriteDeviceData capability
sl@0
   376
       (TCapability::ECapabilityWriteDeviceData): 
sl@0
   377
	   - User::SetMachineConfiguration()
sl@0
   378
	   - User::SetHomeTime()
sl@0
   379
	   - User::SetUTCTime()
sl@0
   380
	   - User::SetUTCOffset()
sl@0
   381
	   - User::SetUTCTimeAndOffset()
sl@0
   382
	   .
sl@0
   383
	-# The panic is raised on call to the following function if the
sl@0
   384
	   calling process does not have the ReadDeviceData capability
sl@0
   385
	   (TCapability::ECapabilityReadDeviceData): 		  
sl@0
   386
	   - User::MachineConfiguration()
sl@0
   387
	   .
sl@0
   388
	*/
sl@0
   389
	EPlatformSecurityTrap=46,
sl@0
   390
	
sl@0
   391
	/**
sl@0
   392
	This panic is raised when the user issues a request to be notified of
sl@0
   393
	messages or the availability of space, when a request has already been
sl@0
   394
	issued and is still outstanding.
sl@0
   395
	
sl@0
   396
	@see RMsgQueue
sl@0
   397
	*/
sl@0
   398
	EMsgQueueRequestPending=47,
sl@0
   399
	
sl@0
   400
	/**
sl@0
   401
	This panic is raised when creating a message queue and the size of
sl@0
   402
	the template parameter is invalid.
sl@0
   403
	
sl@0
   404
	@see RMsgQueue
sl@0
   405
	*/
sl@0
   406
	EMsgQueueInvalidLength=48,
sl@0
   407
	
sl@0
   408
	/**
sl@0
   409
	This panic is raised when creating a message queue and the specified number
sl@0
   410
	of slots is not positive.
sl@0
   411
	
sl@0
   412
	@see RMsgQueue
sl@0
   413
	*/
sl@0
   414
	EMsgQueueInvalidSlots=49,
sl@0
   415
	
sl@0
   416
	/**
sl@0
   417
	This panic is raised if an attempt is made to cancel an outstanding request 
sl@0
   418
	to be notified of messages or the availability of space, and the cancel is
sl@0
   419
	being made by a thread in a different process.
sl@0
   420
	*/
sl@0
   421
	EMsgQueueIllegalCancel=50,
sl@0
   422
	
sl@0
   423
	/**
sl@0
   424
	This panic is raised by RProcess::Setparameter()
sl@0
   425
	if a slot value is invalid.
sl@0
   426
	*/
sl@0
   427
	EParameterSlotRange=51,
sl@0
   428
	
sl@0
   429
	/**
sl@0
   430
	This panic is raised by RProcess::Setparameter()
sl@0
   431
	if a slot is in use.
sl@0
   432
	*/
sl@0
   433
	EParameterSlotInUse=52,
sl@0
   434
	
sl@0
   435
	/**
sl@0
   436
	This panic is raised by RProcess::Setparameter()
sl@0
   437
	if the length of the data passed is negative.
sl@0
   438
	*/
sl@0
   439
	EParameterSlotDataLength=53,
sl@0
   440
	
sl@0
   441
	/**
sl@0
   442
	This panic is raised by RCondVar::Wait() when the current thread does
sl@0
   443
	not hold the specified mutex.
sl@0
   444
	*/
sl@0
   445
	ECondVarWaitMutexNotLocked=54,
sl@0
   446
	
sl@0
   447
	/**
sl@0
   448
	This panic is raised when a call is made to RThread::GetDesMaxLength(),
sl@0
   449
	which is obsolete.
sl@0
   450
	*/
sl@0
   451
	EObsoleteFunctionality=55,
sl@0
   452
sl@0
   453
	/**
sl@0
   454
	This panic is raised on a process which has not yet been resumed and whoes
sl@0
   455
	creator has died.
sl@0
   456
	*/
sl@0
   457
	EZombieProcessKilled=56,
sl@0
   458
sl@0
   459
	/**
sl@0
   460
	A connect message was sent to a session that has already been successfully
sl@0
   461
	connected to the server (cookie is non-NULL).
sl@0
   462
	*/
sl@0
   463
	ESessionAlreadyConnected=57,
sl@0
   464
sl@0
   465
	/**
sl@0
   466
	A session tried to set the kernel session cookie to a null value
sl@0
   467
	*/
sl@0
   468
	ESessionNullCookie=58,
sl@0
   469
sl@0
   470
	/**
sl@0
   471
	A session tried to set the kernel session cookie twice
sl@0
   472
	*/
sl@0
   473
	ESessionCookieAlreadySet=59,
sl@0
   474
sl@0
   475
	/**
sl@0
   476
	A session tried to set the kernel session cookie with a message
sl@0
   477
	that wasn't the connect message
sl@0
   478
	*/
sl@0
   479
	ESessionInvalidCookieMsg=60,
sl@0
   480
sl@0
   481
	/**
sl@0
   482
	A realtime thread executed a non-realtime function.
sl@0
   483
	*/
sl@0
   484
	EIllegalFunctionForRealtimeThread=61,
sl@0
   485
sl@0
   486
	/**
sl@0
   487
	This panic is raised by Kern::SetThreadRealtimeState when the state argument is invalid.
sl@0
   488
	*/
sl@0
   489
	EInvalidRealtimeState=62,
sl@0
   490
sl@0
   491
	/**
sl@0
   492
	A bad descriptor was passed to a server over IPC, causing an exception when the kernel tried to
sl@0
   493
	update its length field.
sl@0
   494
	*/
sl@0
   495
	EBadIpcDescriptor=63,
sl@0
   496
sl@0
   497
	/**
sl@0
   498
	An invalid notification type was passed to a shared buffers exec call handler.
sl@0
   499
	*/
sl@0
   500
	EShBufExecBadNotification=64,
sl@0
   501
sl@0
   502
	/**
sl@0
   503
	An invalid parameter was passed to a shared buffers exec call handler.
sl@0
   504
	*/
sl@0
   505
	EShBufExecBadParameter=65,
sl@0
   506
	};
sl@0
   507
sl@0
   508
#endif