Windows error 0x00000082, 130

Detailed Error Information

DIRECT_ACCESS_HANDLE[1]

MessageAttempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070082.

DFS_FILE_SYSTEM[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x82: DFS_FILE_SYSTEM.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code130 (0x0082)

Questions

7votes
1answer

get non connected devices, when my device are in tethering mode

i am activating tethering mode with this code: private void setWifiTetheringEnabled(boolean enable) { WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE); Method[] methods = wifiManager.getClass().getDeclaredMethods(); for (Method method : methods) { Log.e("teste", method.getName()); if (method.getName().equals("setWifiApEnabled")) { try { method.invoke(wifiManager, null, enable); } catch (Exception ex) { } break; } } } and i [...] read more
android
android-wifi
tethering
3votes
1answer

How to understand and change CPU register FLAG in bochsdbg?

I can use 'r' to get the info of CPU register FLAG. 1.Can I understand by this? eflags 0x00000082: id vip vif ac vm rf nt IOPL=0 of df if tf SF zf af pf cf 0x00000082= 0 0 0 0 0 0 0 0 0 0 1 0 1 [...] read more
cpu-registers
bochs
2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
2votes
2answers

How to convert integers to a hex string without the 0x (Julia 1.0)

I have an issue where I want to decode the MAC address of a pcap record and represent it as 4c:76:25:e9:78:42 from a UInt8 array. The array looks like this which is a part of the pcap record. UInt8[0x4c, 0x76, 0x25, 0xe9, 0x78, 0x42, 0xe0, 0x0e, 0xda, 0x58 … 0x3c, [...] read more
string
hex
julia
pcap
2votes
1answer

x86 Assembly registers and mov instruction, and jump offset

I just had a question I couldn't seem to find a decent answer to. I'm given this code: 0020 mov eax, [ebp+0x0c]; value inside = 0x000000ff 0023 mov cl, [ebp+ox08]; value inside- 0x82 0026 cmp al, cl 0028 jl label ;label is at address 003c, jl is signed 002a nop [...] read more
assembly
x86
offset
cpu-registers
2votes
0answers

Process is stuck when generating core with gcore

I have a multi-threaded process for which I wanted to generate core dump. gcore ran, gdb started, the process went to "t" state according to ps. However, it got stuck there. As it was already being traced, I could not attach another gdb session to see what was going on. [...] read more
linux
linux-kernel
pthreads
virtualbox
gcore
1vote
2answers

VM entry (vmlaunch) with invalid control field

I am learning Intel VMX with a Linux based VMM. I found 'vmlaunch' instruction failed with vm instruction error of 7. I checked Intel's SDM, it means 'VM entry with invalid control field'. I double checked the VM_entry_control, VM_exit_control, VM_exec_control, but could NOT find anything wrong. I am using EPTP [...] read more
linux
virtualization
0votes
0answers

dwarfdump output with overlapping ranges

I am using the dwarfdump command with these options -fFpPEo against a binary file. The output looks like this: fde: < 7><0x00000000:0x00000092><clear><fde offset 0x00005d70 length: 0x00000030><eh offset none> 0x00000000: <off cfa=00(r13) > 0x00000004: <off cfa=24(r13) > <off r4=-24(cfa) > <off r5=-20(cfa) > <off r6=-16(cfa) > <off r7=-12(cfa) > <off r8=-8(cfa) [...] read more
dwarf
0votes
0answers

Access violation using different c++ runtime build VS 2017

I got an c0000005 memory exception when my program use a newer version of c++ runtime, specifically of msvcp140.dll : * 14.16.27012.6 the program works * 14.24.28127.4 the program crashes. My application uses signalrclient library for connecting to our web service. When there’s a problem with the connection, the program [...] read more
c++
visual-studio-2017
c++17
signalr.client
0votes
2answers

Assembly Language Storing Issue

I'm trying to make an Assembly program concatenate two Strings. Here's my program. AREA Assignment4, CODE, READONLY ENTRY ;;;;;;;;;;Setting Up ADR r0, StrF ;Address of first block in destination ;;;String 1 ADR r1, Str1 ;Address of first string ADR r2, EoS ;Address of EoS1 SUBS r2, r2,r1 ;Length of str1, [...] read more
string
memory
assembly
arm
storage
0votes
1answer

How to detect text mode or graphics mode on boot loader?

I want to detect which mode I just using now with BIOS intXX when running bootloader I wrote. How to detect now is text mode or graphics mode? Which interrupt function I should use? Thank you~ -------------------------------------------------------------------------------- I didn't figure out why when I run int 10 ,the value of [...] read more
interrupt
bootloader
bios

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0