Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Panic kernal-mode address fault on user address 0x14 Post 302323075 by Twix on Friday 5th of June 2009 10:10:06 AM
Old 06-05-2009
Error Panic kernal-mode address fault on user address 0x14

Smilie Firstly Hi all!!, im NEW!! and on here hoping that someone might be able to offer me some help... i have a server that keeps crashing every few days with the error message:

Code:
PANIC KERNAL-MODE ADDRESS FAULT ON USER ADDRESS 0X14
KERNAL PAGE FAULT FROM (CS:EIP)=(100:EF71B5BD)
EAX=EF822000 EBX=D588D460 ECX = 3 EDX=D61A1D44 ESI = 0 EDI=EF822F80 EBP-D37B7820 ESP=EF6D5284 
DEBUGGER 
EAX:EF822000 EBX:D588D460 ECX: 3 EDX:D61A1D44 EFL: 10206 ESI: 0
EDI: EF822F80 ESP:EF6D527C EBP:D37B7820 REGSET: 0
DLPI_SEND_IOCACK+D: MOVL 0X14(%ESI), EAX

I have googled it but no joy.. i know NOTHING about UNIX and thought that someone here might just be able to advise me if nothing else whether this is a hardware error or a software error??

any input at all would be great!!

thanks for taking the time to read!

TWIX

Last edited by Franklin52; 06-05-2009 at 11:26 AM.. Reason: Reformatting
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Kernal Panic

Received the following on the weekend. Panic:k_trap kernel mode trap type 0X0000000e cannot dump 163739 pages to dumpdev hd (1/41):space for only 48640 pages Dump not complete Safe to power off or press any key to reboot Any ideas how to fix this one? It also happen a month ago. (3 Replies)
Discussion started by: jcoleman544
3 Replies

2. IP Networking

How to Achive IP address through MAC(Ethernet) address

Hi sir, i want to make such programe which takes MAC(Ethernet) address of any host & give me its IP address....... but i'm nt getting that how i can pass the MAC address to Frame........ Please give me an idea for making such program... Thanks & regards Krishna (3 Replies)
Discussion started by: krishnacins
3 Replies

3. UNIX for Dummies Questions & Answers

signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac

When i run a program in sun solaris i got core dumped with an error message as follows... signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac 0xfe1d44ac: _malloc_unlocked+0x022c: ld , %o3 Current function is GetEDBInfo 360 EXEC SQL (dbx) where... (1 Reply)
Discussion started by: noufal
1 Replies

4. Programming

segmantation Fault error SEGV_MAPERR - Address not mapped to object

Program received signal SIGSEGV, Segmentation fault si_code: 1 - SEGV_MAPERR - Address not mapped to object. 0x9fffffffbe7080d0:0 in free+0xb0 () from /usr/lib/hpux64/libc.so.1 Hi , I have developed a class to read config file (flat file with space as a field seperator ) on plattform... (3 Replies)
Discussion started by: pravinbhingare
3 Replies

5. UNIX for Dummies Questions & Answers

signal SEGV (no mapping at the fault address)

Hello i ve got the following error on a C servor. signal SEGV (no mapping at the fault address) when running in dbx program terminated by signal SEGV (no mapping at the fault address) 0xff1d5cb4: srch_dir+0x0154: cmp %o1, %o0 Current function is _log 533 ... (4 Replies)
Discussion started by: mumuri
4 Replies

6. IP Networking

Tracing a MAC address to IP address: Solaris

Hi there I lost connectivity to one of our remote systems and when I checked the messages log I found the following: Aug 10 23:42:34 host xntpd: time reset (step) 1.681729 s Aug 16 13:20:51 host ip: WARNING: node "mac address" is using our IP address x.x.x.x on aggr1 Aug 16 13:20:51 host... (9 Replies)
Discussion started by: notreallyhere
9 Replies

7. SCO

Kernal Panic questions

I am trying to restore Unixware 7.1 from a backup using RestoreEdge which is from Microline version 2. The restore is on another machine using the same RAID controller and TBU. We are retiring the other machine. Anyway, we get to disk #2 and it panics. Here is the Pic. Can anyone tell me... (13 Replies)
Discussion started by: ccd1977
13 Replies

8. Programming

Signal SEGV (no mapping at the fault address) in _memcpy at 0xff0b07c0

Hi, I am unable to copy the cursor value into character variable which is defined in nested structure by pointer. typedef struct aaa { unsigned char device_type; unsigned char encrypt; unsigned short rec_len; } ABC; typedef ABC *Pabc; typedef struct def { ABC... (9 Replies)
Discussion started by: gthangav
9 Replies

9. Red Hat

Error: kernal panic not syncing

HI All, server stopped here, we are suspecting server crash, need install new OS. Any suggestions on this. kindly help to us. Thanks Rajesh (0 Replies)
Discussion started by: Rajesh_Apple
0 Replies

10. UNIX for Advanced & Expert Users

C program to detect duplicate ip address if any after assigning ip address to ethernet interface

Hi , Could someone let me know how to detect duplicate ip address after assigning ip address to ethernet interface using c program (3 Replies)
Discussion started by: Gopi Krishna P
3 Replies
This document describes the language accepted by the 80386 assem-
bler that is part of the Amsterdam Compiler Kit.  Note that  only
the syntax is described, only a few 386 instructions are shown as
examples.  The syntax of numbers is the same as in C.	The  con-
stants	32,  040, and 0x20 all represent the same number, but are
written in decimal, octal, and hex, respectively.  The rules  for
character  constants  and strings are also the same as in C.  For
example, 'a' is  a  character  constant.   A  typical  string  is
"string".   Expressions  may be formed with C operators, but must
use [ and ] for parentheses.  (Normal parentheses are claimed  by
the operand syntax.)  Symbols contain letters and digits, as well
as three special characters: dot,  tilde,  and	underscore.   The
first  character  may  not be a digit or tilde.  The names of the
80386 registers are reserved.  These are: ~~~al, bl, cl, dl
~~~ah, bh, ch, dh
~~~ax, bx, cx, dx, eax, ebx, ecx, edx
~~~si, di, bp, sp, esi, edi, ebp, esp
~~~cs, ds, ss, es, fs, gs The xx and exx variants  of  the  eight
general registers are treated as synonyms by the assembler.  Nor-
mally ";ax" is the 16-bit low half of the 32-bit  "eax"	register.
The  assembler	determines  if	a 16 or 32 bit operation is meant
solely by looking at the instruction or the instruction prefixes.
It  is	however best to use the proper registers when writing as-
sembly to not confuse those who read the code.	The last group of
6  segment registers are used for selector + offset mode address-
ing, in which the effective address is at a given offset  in  one
of  the 6 segments.  Names of instructions and pseudo-ops are not
reserved.  Alphabetic characters in opcodes and  pseudo-ops  must
be  in	lower  case.  Commas, blanks, and tabs are separators and
can be interspersed freely between tokens, but not within tokens.
Commas are only legal between operands.  The comment character is
!.  The rest of the line is ignored.  The opcodes are listed  be-
low.   Notes:  (1)  Different  names for the same instruction are
separated by /.  (2) Square brackets ([]) indicate that 0 or 1 of
the enclosed characters can be included.  (3) Curly brackets ({})
work similarly, except that one of the enclosed  characters  must
be  included.	Thus  square brackets indicate an option, whereas
curly brackets indicate that a choice must be made.

  mov[b]  dest, source	! Move word/byte from source to dest
  pop	  dest		! Pop stack
  push	  source	! Push stack
  xchg[b] op1, op2	! Exchange word/byte
  xlat			! Translate
  o16			! Operate on a 16 bit object instead of 32 bit

  in[b]   source	! Input from source I/O port
  in[b] 		! Input from DX I/O port
  out[b]  dest		! Output to dest I/O port
  out[b]		! Output to DX I/O port

  lds	  reg,source	! Load reg and DS from source
  les	  reg,source	! Load reg and ES from source
  lea	  reg,source	! Load effect address of source to reg and DS
  {cdsefg}seg		! Specify seg register for next instruction
  a16			! Use 16 bit addressing mode instead of 32 bit

  lahf			! Load AH from flag register
  popf			! Pop flags
  pushf 		! Push flags
  sahf			! Store AH in flag register

  aaa			! Adjust result of BCD addition
  add[b]  dest,source	! Add
  adc[b]  dest,source	! Add with carry
  daa			! Decimal Adjust after addition
  inc[b]  dest		! Increment by 1

  aas			! Adjust result of BCD subtraction
  sub[b]  dest,source	! Subtract
  sbb[b]  dest,source	! Subtract with borrow from dest
  das			! Decimal adjust after subtraction
  dec[b]  dest		! Decrement by one
  neg[b]  dest		! Negate
  cmp[b]  dest,source	! Compare

  aam			! Adjust result of BCD multiply
  imul[b] source	! Signed multiply
  mul[b]  source	! Unsigned multiply

  aad			! Adjust AX for BCD division
  o16 cbw		! Sign extend AL into AH
  o16 cwd		! Sign extend AX into DX
  cwde			! Sign extend AX into EAX
  cdq			! Sign extend EAX into EDX
  idiv[b] source	! Signed divide
  div[b]  source	! Unsigned divide

  and[b]  dest,source	! Logical and
  not[b]  dest		! Logical not
  or[b]   dest,source	! Logical inclusive or
  test[b] dest,source	! Logical test
  xor[b]  dest,source	! Logical exclusive or

  sal[b]/shl[b] 	dest,CL! Shift logical left
  sar[b]  dest,CL	! Shift arithmetic right
  shr[b]  dest,CL	! Shift logical right

  rcl[b]  dest,CL	! Rotate left, with carry
  rcr[b]  dest,CL	! Rotate right, with carry
  rol[b]  dest,CL	! Rotate left
  ror[b]  dest,CL	! Rotate right

  cmps[b]		! Compare string element ds:esi with es:edi
  lods[b]		! Load from ds:esi into AL, AX, or EAX
  movs[b]		! Move from ds:esi to es:edi
  rep			! Repeat next instruction until ECX=0
  repe/repz		! Repeat next instruction until ECX=0 and ZF=1
  repne/repnz		! Repeat next instruction until ECX!=0 and ZF=0
  scas[b]		! Compare ds:esi with AL/AX/EAX
  stos[b]		! Store AL/AX/EAX in es:edi

As accepts a number of special jump opcodes that can assemble  to
instructions  with  either  a  byte  displacement, which can only
reach to targets within -126 to +129 bytes of the branch,  or  an
instruction  with a 32-bit displacement.  The assembler automati-
cally chooses a byte or word displacement instruction.	The  Eng-
lish  translation  of  the opcodes should be obvious, with l(ess)
and  g(reater)	for  signed   comparisions,   and   b(elow)   and
a(bove)*(CQ  for  unsigned  comparisions.  There are lots of syn-
onyms to allow you to write ";jump if not that" instead	of  "jump
if  this";.  The call, jmp, and ret instructions can be either in-
trasegment or intersegment.  The intersegment versions are  indi-
cated with the suffix f.

  jmp[f]  dest		! jump to dest (8 or 32-bit displacement)
  call[f] dest		! call procedure
  ret[f]		! return from procedure

  ja/jnbe		! if above/not below or equal (unsigned)
  jae/jnb/jnc		! if above or equal/not below/not carry (uns.)
  jb/jnae/jc		! if not above nor equal/below/carry (unsigned)
  jbe/jna		! if below or equal/not above (unsigned)
  jg/jnle		! if greater/not less nor equal (signed)
  jge/jnl		! if greater or equal/not less (signed)
  jl/jnqe		! if less/not greater nor equal (signed)
  jle/jgl		! if less or equal/not greater (signed)
  je/jz 		! if equal/zero
  jne/jnz		! if not equal/not zero
  jno			! if overflow not set
  jo			! if overflow set
  jnp/jpo		! if parity not set/parity odd
  jp/jpe		! if parity set/parity even
  jns			! if sign not set
  js			! if sign set

  jcxz	  dest		! jump if ECX = 0
  loop	  dest		! Decrement ECX and jump if CX != 0
  loope/loopz		dest! Decrement ECX and jump if ECX = 0 and ZF = 1
  loopne/loopnz 	dest! Decrement ECX and jump if ECX != 0 and ZF = 0

  int	  n		! Software interrupt n
  into			! Interrupt if overflow set
  iretd 		! Return from interrupt

  clc			! Clear carry flag
  cld			! Clear direction flag
  cli			! Clear interrupt enable flag
  cmc			! Complement carry flag
  stc			! Set carry flag
  std			! Set direction flag
  sti			! Set interrupt enable flag

The special symbol . is the location counter and its value is the
address of the first byte of the instruction in which the  symbol
appears and can be used in expressions.  There are four different
assembly segments: text, rom, data and	bss.   Segments  are  de-
clared	and  selected by the .sect pseudo-op.  It is customary to
declare all segments at the top of an assembly	file  like  this:
~~~.sect .text; .sect .rom; .sect .data; .sect .bss The assembler
accepts up to 16 different segments, but expects only four to  be
used.	Anything  can in principle be assembled into any segment,
but the bss segment may only contain  uninitialized  data.   Note
that  the . symbol refers to the location in the current segment.
There are two types: name and numeric.	Name labels consist of	a
name followed by a colon (:).  The numeric labels are single dig-
its.  The nearest 0: label may be referenced as 0f in the forward
direction,  or	0b  backwards.	 Each  line  consists of a single
statement.  Blank or comment lines are allowed.  The most general
form  of  an  instruction  is ~~~label: opcode operand1, operand2
! comment The following operators can be used: + - * / & | ^ ~ <<
(shift	left)  >>  (shift right) - (unary minus).  32-bit integer
arithmetic is used.  Division produces a truncated quotient.  Be-
low  is  a  list  of the addressing modes supported.  Each one is
followed by an example.
  constant		      mov eax, 123456
  direct access 	      mov eax, (counter)
  register		      mov eax, esi
  indirect		      mov eax, (esi)
  base + disp.		      mov eax, 6(ebp)
  scaled index		      mov eax, (4*esi)
  base + index		      mov eax, (ebp)(2*esi)
  base + index + disp.	      mov eax, 10(edi)(1*esi)
Any of the constants or symbols may  be  replacement  by  expres-
sions.	 Direct  access,  constants  and displacements may be any
type of expression.  A scaled index with scale 1 may  be  written
without the 1*.  The call and jmp instructions can be interpreted
as a load into the instruction pointer.
  call _routine 	      ! Direct, intrasegment
  call (subloc) 	      ! Indirect, intrasegment
  call 6(ebp)		      ! Indirect, intrasegment
  call ebx		      ! Direct, intrasegment
  call (ebx)		      ! Indirect, intrasegment
  callf (subloc)	      ! Indirect, intersegment
  callf seg:offs	      ! Direct, intersegment
Symbols can acquire values in one of two ways.	Using a symbol as
a  label  sets it to . for the current segment with type relocat-
able.  Alternative, a symbol may be given a name via  an  assign-
ment  of  the  form    symbol = expression in which the symbol is
assigned the value and type of its arguments.  Space can  be  re-
served	for  bytes, words, and longs using pseudo-ops.	They take
one or more operands, and for each generate a value whose size is
a  byte, word (2 bytes) or long (4 bytes).  For example:   .data1
2, 6	       ! allocate 2 bytes initialized to 2 and 6
  .data2 3, 0x10	! allocate 2 words initialized to  3  and
16
  .data4 010		! allocate a longword initialized to 8
  .space  40		 !  allocates 40 bytes of zeros allocates
50 (decimal) bytes of storage, initializing the first  two  bytes
to  2  and  6,	the next two words to 3 and 16, then one longword
with value 8 (010 octal), last 40 bytes of zeros.  The pseudo-ops
.ascii and .asciz take one string argument and generate the ASCII
character codes for the letters in the string.	The latter  auto-
matically  terminates the string with a null (0) byte.	For exam-
ple,	.ascii "hello"
   .asciz "world
" Sometimes it is necessary to force	the  next
item  to  begin  at  a	word,  longword or even a 16 byte address
boundary.  The .align pseudo-op zero or more  null  byte  if  the
current  location is a multiple of the argument of .align.  Every
item assembled goes in one of the four segments: text, rom, data,
or  bss.  By using the .sect pseudo-op with argument .text, .rom,
.data or .bss, the programmer can force the next items to go in a
particular  segment.   A  symbol can be given global scope by in-
cluding it in a .define pseudo-op.  Multiple names may be listed,
separate by commas.  It must be used to export symbols defined in
the current program.  Names not defined in  the  current  program
are treated as ";undefined external" automatically, although it is
customary to make this explicit with the .extern pseudo-op.   The
.comm  pseudo-op declares storage that can be common to more than
one module.  There are two arguments: a name and an absolute  ex-
pression  giving  the size in bytes of the area named by the sym-
bol.  The type of the symbol becomes external.	The statement can
appear	in  any  segment.   If you think this has something to do
with FORTRAN, you are right.  In the kernel directory, there  are
several  assembly  code  files that are worth inspecting as exam-
ples.  However, note that these files, are designed to	first  be
run through the C preprocessor.  (The very first character is a #
to signal this.)  Thus they contain numerous constructs that  are
not  pure  assembler.  For true assembler examples, compile any C
program provided with using the -S flag.  This will result in  an
assembly  language file with a suffix with the same name as the C
source file, but ending with the .s suffix.
All times are GMT -4. The time now is 11:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy