![]() |
CreateProcess wirft Kernelbase Error
Wenn ich CreateProcess ohne UniqueString aufrufe wirft es einen Kernelbase Error.
Rufe ich es mit auf sind die Strings nicht lesbar.
Delphi-Quellcode:
Warum?
function PipeExec(CommandLine, Path: String; EnvironementStrings: PChar; var StdIO: TStdIO; UserToken: THandle; ShowWindow: DWORD = SW_HIDE): TProcessInformation;
UniqueString(CommandLine); if UserToken = 0 then begin if not CreateProcess( nil, // must be NIL for win16 apps under NT, including DOS progs pchar(CommandLine), nil, // Process security attibutes. Sue same as current nil, // Thread security attibutes. Sue same as current true, // Inherite handles. Must be true for IO redirection ProcessCreationFlags, // creation flags EnvironementStrings, // If using with a CGI aplication, you MUST pass the HTTP headers as env. strings in this variable PathPChar, // Directory of the new process SI, // SISTEMINFO Structure used to initialize the new process result) // PROCESINFORMATION structure used to control the newly created process then RaiseLastOSError; |
AW: CreateProcess wirft Kernelbase Error
Ich weiß nicht direkt worin das problem besteht aber ich nutze es auch eher wie es
![]() Also schon das erste Argument zu füllen. Falls es hilft, so nutze ich es beispielsweise:
Delphi-Quellcode:
function ExecuteExe(const Executable: String; Commands: String; const ShowConsole, DoWait: Boolean): Cardinal;
procedure WaitFor(processHandle: THandle); var Msg: TMsg; ret: DWORD; begin repeat ret := MsgWaitForMultipleObjects(1, { 1 handle to wait on } processHandle, { the handle } False, { wake on any event } INFINITE, { wait without timeout } QS_PAINT or { wake on paint messages } QS_SENDMESSAGE { or messages from other threads } ); if ret = WAIT_FAILED then Exit; { can do little here } if ret = (WAIT_OBJECT_0 + 1) then begin while PeekMessage(Msg, 0, WM_PAINT, WM_PAINT, PM_REMOVE) do DispatchMessage(Msg); end; until ret = WAIT_OBJECT_0; end; { Waitfor } var Security : TSecurityAttributes; StartupInfo: TStartupInfo; ProcessInfo: TProcessInformation; begin Result := Cardinal($FFFFFFFF); if ((Length(Commands) > 1) and (Commands[1]<>' ')) then Commands := ' ' + Commands; with Security do begin nLength := SizeOf(TSecurityAttributes); lpSecurityDescriptor := nil; bInheritHandle := False; end; FillChar(StartupInfo, SizeOf(StartupInfo), #0); StartupInfo.cb := SizeOf(StartupInfo); StartupInfo.dwFlags := STARTF_USESHOWWINDOW or STARTF_FORCEONFEEDBACK; if ShowConsole then StartupInfo.wShowWindow := SW_SHOWNORMAL else StartupInfo.wShowWindow := SW_HIDE; if CreateProcess(PChar(Executable), PChar(Commands), @Security, @Security, False, CREATE_NEW_CONSOLE or NORMAL_PRIORITY_CLASS, nil, PChar(ExtractFilePath(Executable)), StartupInfo, ProcessInfo) then begin if DoWait then WaitFor(ProcessInfo.hProcess); if not GetExitCodeProcess(ProcessInfo.hProcess, Result) then Result := Cardinal($FFFFFFFF); CloseHandle(ProcessInfo.hThread); CloseHandle(ProcessInfo.hProcess); end else Result := GetLastError; end; |
AW: CreateProcess wirft Kernelbase Error
Zitat:
Ich glaube das die Rückgabe mit Utf8ToString übergeben werden muß. PWideChar scheint kein "writable string" zu sein. werde das mal testen. |
AW: CreateProcess wirft Kernelbase Error
Jo.
Zitat:
Doch kann es, falls Konstante rein kommt. (nur bei Commands[1]=' ' wird es immer eine Variable) Tipp:
Delphi-Quellcode:
als erste Zeile einfügen.
UniqueString(Commands);
PChar/PWideChar/PAnsiChar aus einem String/WideString/UnicodeString/AnsiString is bei '' immer nicht "writeable" und auch nicht wenn es er aus einer Constante gibt. (OK, Stringkonstanten sind zwar nur "schreibgeschützte" Variablen, aber dennoch) Warum leere "Security" anstatt NIL an die Funktion? |
AW: CreateProcess wirft Kernelbase Error
Zitat:
Ich habe es jetzt mal so gemacht aber leider schmiert die Anwendung wieder ab mit EAccessViolation Obwohl der Text jetzt korrekt zu lesen ist.
Delphi-Quellcode:
Callback( ReadPipe(StdIO), Input, Terminate, PI, UserData);
Delphi-Quellcode:
TIOPipe = record hRead, hWrite: DWORD; end; TStdIO = record stdIn, stdOut, stdError: TIOPipe; end;
Delphi-Quellcode:
so läuft es durch aber der Text ist dann nicht zu lesen.
Function ReadPipe(StdIo: TStdIO): string;
var BufferSize: DWORD; Buffer: array [0..255] of AnsiChar; begin if StdIO.stdOut.hRead <> INVALID_HANDLE_VALUE then begin BufferSize := 0; // First, check the size of the current pipe buffer PeekNamedPipe( StdIO.stdOut.hRead, nil, 0, nil, @BufferSize, nil); // if there is data waiting, fetch it if BufferSize > 0 then begin try ZeroMemory(@Buffer, BufferSize + 1); // Read all data from the pipe ReadFile(StdIO.stdOut.hRead, Buffer, BufferSize, BufferSize, nil); SetLength(Result, BufferSize); CopyMemory(@Result, @Buffer, BufferSize); finally StrDispose(Buffer); end; end else Result := ''; end else Result := ''; end;
Delphi-Quellcode:
Finde den Fehler nicht warum es mit einem Array of AnsiString abschmiert.
Function ReadPipe(StdIo: TStdIO): string;
var BufferSize: DWORD; Buffer: PChar; begin if StdIO.stdOut.hRead <> INVALID_HANDLE_VALUE then begin BufferSize := 0; // First, check the size of the current pipe buffer PeekNamedPipe( StdIO.stdOut.hRead, nil, 0, nil, @BufferSize, nil); // if there is data waiting, fetch it if BufferSize > 0 then begin // set the new length of the result and initialize it Buffer := StrAlloc(BufferSize + 1); try ZeroMemory(Buffer, BufferSize + 1); // Read all data from the pipe ReadFile(StdIO.stdOut.hRead, Buffer^, BufferSize, BufferSize, nil); SetLength(Result, BufferSize); CopyMemory(PChar(Result), Buffer, BufferSize); finally StrDispose(Buffer); end; end else Result := ''; end else Result := ''; end; Zitat:
|
AW: CreateProcess wirft Kernelbase Error
Ich hatte oben noch bissl was geändert. :opps:
Vorallem siehe "Tipp" |
AW: CreateProcess wirft Kernelbase Error
Zitat:
Delphi-Quellcode:
function PipeExec(CommandLine, Path: String; EnvironementStrings: PChar; var StdIO: TStdIO; UserToken: THandle; ShowWindow: DWORD = SW_HIDE): TProcessInformation;
const ProcessCreationFlags: DWord = NORMAL_PRIORITY_CLASS; var SI : TStartupInfo; PathPChar : PChar; begin // initialize the structure we are going to use Zeromemory(@SI, SizeOf(SI)); Zeromemory(@result, SizeOf(result)); // Fill the necessary fields SI.cb := sizeof(SI); // Size of the structure. The OS uses that to validat it SI.dwFlags := STARTF_USESHOWWINDOW or // Use the wShowWindow field STARTF_USESTDHANDLES; // use the handles we created for the std IO pipes SI.wShowWindow := ShowWindow; // Show the console or not... SI.hStdError := StdIO.stdError.hWrite; // Write errors to the error pipe SI.hStdInput := StdIO.stdIn.hRead; // read input from input pipe SI.hStdOutput := StdIO.stdOut.hWrite; // Write Ouput to output pipe if length(path) > 0 then PathPChar := PChar(Path) else PathPChar := nil; UniqueString(CommandLine); //<<<<<<< Hier! if UserToken = 0 then begin if not CreateProcess( nil, // must be NIL for win16 apps under NT, including DOS progs pchar(CommandLine), nil, // Process security attibutes. Sue same as current nil, // Thread security attibutes. Sue same as current true, // Inherite handles. Must be true for IO redirection ProcessCreationFlags, // creation flags EnvironementStrings, // If using with a CGI aplication, you MUST pass the HTTP headers as env. strings in this variable PathPChar, // Directory of the new process SI, // SISTEMINFO Structure used to initialize the new process result) // PROCESINFORMATION structure used to control the newly created process then RaiseLastOSError; end else begin if not CreateProcessAsUser( UserToken, // UserToken of desired user. That token must be retreived with LogonUser or DuplicatteToken from a Impersonation token nil, // must be NIL for win16 apps under NT, including DOS progs pchar(CommandLine), nil, // Process security attibutes. Sue same as current nil, // Thread security attibutes. Sue same as current true, // Inherite handles. Must be true for IO redirection ProcessCreationFlags, // creation flags EnvironementStrings, // If using with a CGI aplication, you MUST pass the HTTP headers as env. strings in this variable PathPChar, // Directory of the new process SI, // SISTEMINFO Structure used to initialize the new process result) // PROCESINFORMATION structure used to control the newly created process then RaiseLastOSError; end; end; |
AW: CreateProcess wirft Kernelbase Error
Hänge das Projekt mal an falls jemand reinschauen möchte.
Es soll nichts anderes machen als die youtube-dl.exe über "Pipe" zu aktualisieren. Achtung diese Datei ist nicht im Archiv. Die Auskommentierte "Function ReadPipe" funktioniert ist aber nicht lesbar (Bild Auskommentierte Funktion) Die Aktivierte Funktion läßt die Anwendung abstürzen. Das Update zu erhalten dauert einige zeit warum das so langsam ist keine Ahnung! (gleiche mit der *.bat) Ist nichts besonderes nur ein Test Projekt. Wenn alle Stricke reißen mache ich es einfach über eine Batch Datei. |
AW: CreateProcess wirft Kernelbase Error
Ich schau mal rein (code), mein erster Gedanke ist, der Puffer ist viel zu klein. Als ich eine Cmd.exe über Pipes umlenkte, brauchte ich schlapp 35kb an puffer.
Mal sehen ob ich richtig nachvollziehen kann was Du da vorhast und eventuell sogar hilfreich sein kann. |
AW: CreateProcess wirft Kernelbase Error
Zitat:
Danke für das reinschauen. Ich habe das Array auf 255 gesetzt. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:03 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz