command line sometimes freezes

Bug #1659172 reported by Marshall Floyd
20
This bug affects 3 people
Affects Status Importance Assigned to Milestone
Inkscape
Fix Released
Undecided
Unassigned

Bug Description

I am using a script to use Inkscape 0.92 via command line (indirectly) in Windows 10.
I've found that after running the script, Inkscape will sometimes not close properly leaving an instance running in the background eating up to 12-18% of cpu (quad core/8 threads) while not visibly doing anything: It completes it's tasks every time as far as I can tell, as the script keeps running, returns correct results and properly saves/converts the files requested. This started happening after updating to 0.92 (I believe I had 0.91 before and never noticed this problem then). I first noticed this when my computer was bogged down and opening task manager, I found 8+ instances of inkscape running in the background. Since then when running my scripts I keep task manager open to kill it on the random times when it doesn't close properly (or I listen for when my cpu fan jumps level, indicating inkscape didn't close).

I run the following commands
"C:\Program Files\Inkscape\inkscape" -V
 (returning Inkscape 0.92.0 r15299)
and
"C:\Program Files\Inkscape\inkscape" -f FilepathAndname.svg -e exportPathAndName.png -D -d 600

The second command is usually used in a loop and runs 1-8 times. Sometimes it gets through everything without any problems, and sometimes I'll find 3 instances weren't closed.
Just now running
    "C:\Program Files\Inkscape\inkscape" -V
directly in the command line (not in the scripting software) did the same thing: It would frequently leave Inkscape open and not return, even though it gave the correct version. Sometimes it would close.

Tags: cli win64
description: updated
su_v (suv-lp)
tags: added: cli win64
Revision history for this message
jazzynico (jazzynico) wrote :

Thanks for taking the time to file a report!

Does it happen with some specific SVG files? If so, could you please attach a copy so that we can investigate?

Revision history for this message
Marshall Floyd (marshall) wrote :

Because it happens with the version command alone, ("C:\Program Files\Inkscape\inkscape" -V), which doesn't convert anything, I think it doesn't have to do with any specific SVG files. Just now, (always good to double check), I put in that command into the command line and the 5th try made it freeze without returning control to the command line (cpu at 15-18%).

Revision history for this message
jazzynico (jazzynico) wrote :

> Because it happens with the version command alone

Oh, sorry, I completely missed that part!

Just tested on Windows XP (32-bit) with lp:inkscape/0.92.x rev. 15346, and not reproduced here. I launched the "inkscape.com -V" command about 120 times from the command line interface, and I saw no running Inkscape instance in the task manager.

To be confirmed on a 64-bit Windows computer.

Revision history for this message
Patrick Storz (ede123) wrote :

Just tried the following on Windows 10 x64 using Inkscape 0.92.0 r15299 (64 bit):

FOR /L %%G IN (1,1,100) DO "C:\Program Files\Inkscape\inkscape" -V

However not even one Instance of Inkscape remained in memory.
I also tried varying the command to "inkscape.com" and "inkscape.exe", and even changed it to export an .svg to .pdf or .png without change, so there seems to be more to this issue.

On the off-chance that this is yet another incarnation of bug #1528629:
Did you try to wait some minutes for the command to succeed?

That being said I sporadically noticed inkscape.exe continuing to run in background using up one CPU core after closing the GUI. However I was never able to reproduce it in a controlled environment and usually did strange things before (i.e. using multiple instances / versions of Inkscape side-by-side, debugging stuff, etc. so it could be unrelated.

Revision history for this message
Marshall Floyd (marshall) wrote :

As to the possible questions about different versions, I did the following: (Summary: only the 64bit 0.92 version would ever freeze, not 32 bit 0.92 and not 64bit 0.91)

1) Trying "FOR /L %G IN (1,1,100) DO "C:\Program Files\Inkscape\inkscape" -V": I had to end inkscape manually 51 times.
2) I un-installed and re-installed 0.92 x64 from exe. Running the loop again for only 10 times required manually closing inkscape 5 times.
3) I uninstalled 0.92 and re-installed 0.91: the 100x for loop didn't freeze on close even once. It returned: Inkscape 0.91 r13725 (Jan 30 2015)
4) I uninstalled 0.91 and re-installed 0.92, but from msi this time. "C:\Program Files\Inkscape\inkscape" -V" froze first time by itself. But it returned "Inkscape 0.92.0 r15299" first, before freezing: It always completes the appropriate action before freezing. I left it running for more than 7 minutes before killing it.
5) I uninstalled 0.92 x64 and installed 0.92 x32 (Inkscape-0.92.0-1.exe). "C:\Program Files (x86)\Inkscape\inkscape" -V returned Inkscape 0.92.0 r15299.
[FOR /L %G IN (1,1,10) DO "C:\Program Files (x86)\Inkscape\inkscape" -V] all worked
So did [FOR /L %G IN (1,1,100) DO "C:\Program Files (x86)\Inkscape\inkscape" -V].
6) Uninstall 32bit inkscape 0.92, re-install 64bit inkscape 0.92 (Inkscape-0.92.0-x64-1.exe): ["C:\Program Files\Inkscape\inkscape" -V] froze first time on close (it returned "Inkscape 0.92.0 r15299" before freezing). I left it for 2 minutes before closing it. [FOR /L %G IN (1,1,100) DO "C:\Program Files\Inkscape\inkscape" -V] needed to be closed only 3 times this time around.

Revision history for this message
Patrick Storz (ede123) wrote :

Could you try if it also happens when using the 7z archive (i.e. not installing to "C:\Program Files")? I want to rule out that it's some type of file access issue...

Also (it it's not too much to ask of you): Could you check the inkscape.exe process with the tool "Process Explorer" [1] when it's in a locked-up state?
You can get *a lot* of informations on the properties of the running process, including information of CPU usage of single threads of the process in question (so maybe we can figure out which thread and therefore which part of the code is responsible...)

[1] https://technet.microsoft.com/en-us/sysinternals/processexplorer.aspx

Revision history for this message
Marshall Floyd (marshall) wrote :

The 7z archive also froze. I already had Process Explorer on my computer, so I took screenshots with the 7z version running and the prior 64bit version installed from exe. I'm not sure exactly what you're looking for, or if there is a better way to get you the information. Let me know, I'm glad to help explore any details as needed.

Revision history for this message
Marshall Floyd (marshall) wrote :
Revision history for this message
Marshall Floyd (marshall) wrote :
Revision history for this message
Marshall Floyd (marshall) wrote :
Revision history for this message
Patrick Storz (ede123) wrote :

Marshall: In the context menu of each process there's a "Properties" entry. Especially the "Threads" and "Environment" tabs are of interest.

Revision history for this message
Marshall Floyd (marshall) wrote :

The actual child process thread that is eating cpu will close every time I open properties to the threads tab, so I'm getting nothing from it. But I can see that there are 10 associated threads in the handles view before attempting to open the properties. I've attached a screenshot of the "Environment" tab (same for parent and child process shown in Process Explorer tree view).

From the "parent" inkscape thread properties (obviously the thread # changes every time, but the stacks are the same):

Stack for thread 15860: (inkscape.com+0x1500) [State: Wait:UserRequest]
ntdll.dll!NtWaitForSingleObject+0x14
KERNELBASE.dll!WaitForSingleObjectEx+0x8f
inkscape.com+0x30c3
inkscape.com+0x13e8
inkscape.com+0x151b
KERNEL32.DLL!BaseThreadInitThunk+0x14
ntdll.dll!RtlUserThreadStart+0x21

Stack for thread 20748: (inkscape.com+0x15b0) [State: Wait:Executive]
Stack for thread 17180: (inkscape.com+0x15b0) [State: Wait:Executive]
Stack for thread 14988: (inkscape.com+0x15b0) [State: Wait:Executive]
 (all three have same stack)
ntdll.dll!ZwReadFile+0x14
KERNELBASE.dll!ReadFile+0x74
inkscape.com+0x1608
KERNEL32.DLL!BaseThreadInitThunk+0x14
ntdll.dll!RtlUserThreadStart+0x21

Stack for thread 20116: (ntdll.dll!RtlReleaseSRWLockExclusive+0x1370) [State: Wait:WrQueue]
  (This one sometimes goes away while inkscape continues to run)
ntdll.dll!NtWaitForWorkViaWorkerFactory+0x14
ntdll.dll!RtlReleaseSRWLockExclusive+0x1ade
KERNEL32.DLL!BaseThreadInitThunk+0x14
ntdll.dll!RtlUserThreadStart+0x21

Revision history for this message
Marshall Floyd (marshall) wrote :

I took a trace of events using Process Monitor as well. I end recording the trace while inkscape is still running in the background.
I noticed that closing the "inkscape.com" process (via kill or ctrl-c at the command line) won't close the "inkscape.exe" process that is consuming cpu. Killing "inkscape.exe" will close the "inkscape.com" process.
You can open the file in Process Monitor and see stacks associated with each thread create, exit, file access events, etc. You can probably extract from it which threads of inkscape.exe weren't closed and the associated stacks (which I couldn't get from Process Explorer because inkscape would close when I tried to get to the properties thread tab).

Revision history for this message
Patrick Storz (ede123) wrote :

> The actual child process thread that is eating cpu will close every time I open properties to the threads tab

Interesting, same thing happened for me while debugging bug #1655619. Maybe they're related after all?

One other question: Have you ever seen Inkscape freeze (i.e. not shut down properly) when *not* running from the command line?
Also: Is there a difference between calling inkscape.com and inkscape.exe directly?

I'll look at the log later.

Revision history for this message
Marshall Floyd (marshall) wrote :

Inkscape.com vs inkscape.exe: I didn't know this before, but apparently ".com" is a type of executable (a DOS executable), just like a ".exe" is an executable. Before when I noticed the process I was just assuming it was the name of the thread/process, like a website, kind of like how website names are frequently used for namespaces in java.

When I call "C:\Program Files\Inkscape\inkscape" from the command line, it opens only the inkscape.exe as a GUI (returning "FontLister::get_best_style_match(): can't find family: Sans" at the command line).

With the command line argument (adding -V at the end) it executes inkscape.com, which apparently then executes inkscape.exe. If I run ["C:\Program Files\Inkscape\inkscape.exe" -V] at the command line (i.e. explicitly calling the .exe), then it still sometimes freezes, but never returns the version, whether or not it stays open in the background.

I haven't used the GUI for this version of inkscape much yet, and haven't explicitly noticed it running in the background after closing it. So now, I tried opening and closing the GUI and eventually it does stay open running at high cpu in the background even though it "closed".

Revision history for this message
Alvin Penner (apenner) wrote :

I am not sure what the correct terminology is, but if you run inkscape.exe, it will run independently of DOS. You will regain control of DOS immediately and Inkscape output will not be sent to DOS. If you run inkscape or inkscape.com, then the output will be sent to your DOS window, and you will regain control of DOS only after Inkscape terminates.

Revision history for this message
Patrick Storz (ede123) wrote :

Explanation of inkscape.com vs. inkscape.exe:
On Windows you can have either console applications or GUI applications. Console applications don't have a window but can easily output text to the console. GUI applications do have a window but can not easily write output to the console.

To work around this issue we build two executables:
- inkscape.exe is the actual Inkscape application and is compiled as a GUI application (using GCCs "-mwindows" linker flag).
- inkscape.com is a wrapper that is compiled as a console application (using GCCs "-mconsole" linker flag). It only sets up console input/output and links it to a newly spawned instance of inkscape.exe.

In other words: If you run inkscape.com you'll always end up with a child process of inkscape.exe. Running inkscape.exe directly will only create one process.

When running "inkscape" (without extension) Windows will pick the first executable matching this file name when omitting the file extension and therefore will always launch inkscape.com (as it's first alphabetically).

Revision history for this message
Patrick Storz (ede123) wrote :

> it opens only the inkscape.exe as a GUI (returning "FontLister::get_best_style_match(): can't find family: Sans" at the command line).

Simply set the font to "sans-serif" in the text tool and the error will be gone ("Sans" was a non-standard alias for the default sans serif font in Inkscape < 0.92).

> I tried opening and closing the GUI and eventually it does stay open running at high cpu in the background even though it "closed".

That confirms my fear that the issue is in inkscape.exe itself (and not an issue in the wrapper). On the other hand it narrows down our search as we don't have to bother with inkscape.com anymore.

Regarding the issue: I'm at a loss. I looked at the Process Monitor log but (at least I) am not able to get any useful information from it.
The fact that the issue occurs sometimes but not always makes me assume it's a timing issue or some really ugly issue with code executing in random order which I have no idea how to debug...

Revision history for this message
Kevin van Rijn (kipdekip) wrote :

Since the platform hasn't been mentioned yet. Affecting me as well on Windows 7 x64.

Calling the 64-bit inkscape.exe from the command line directly has a chance to never finish. 32-bit version is not affected.

Revision history for this message
Nicolás Valenzuela (nico-val) wrote :

I'm having this problem on Windows 10 x64. I've created a batch script to export a series of .svg files to .pdf. At certain points, the .pdf files are generated correctly but the Inkscape process stays there, consuming 10% of CPU everytime. As the process didn't finish, the batch script can't continue.

Revision history for this message
Nicolás Valenzuela (nico-val) wrote :

Edit: As the process didn't finish, the batch script can't continue and I have to finish it manually everytime.

Revision history for this message
Nokir (nokir) wrote :

I did some testing with running "inkscape -V" 100 times (using version 0.92.1).
I tested all combinations of the following:

- distribution type
  - x86 exe installer
  - x64 exe installer
  - x86 7zip
  - x64 7zip

- execution type (see uploaded files, all these files were placed in %appdata%\inkscape\extensions)
  - running the bat file from command line in the inkscape install directory
  - starting the python extention out of the inkscape extention menu
  - running the python extention from command line ("python\python <path\to\script.py>" in the inkscape install directory)

- privilegies
  - normal
  - run as administrator (start cmd.exe or inkscape.exe with right click, run as administrator)

The expected behaviour for inkscape is to exit with exit status 0 after a short time. In the following cases, an other behavior was observed:

x64 installed, without admin privilegies, extention on command line: inkscape exits with exit status -1073741819 (ca. 99 out of 100 started processes), but NOT when no inkscape process was started from THIS cmd window before

x64 installed, without admin privilegies, extention in gui: inkscape freezes (ca. 1 out of 5 started processes)

x64 7zip, WITH admin privilegies, bat: inkscape freezes (ca. 1 out of 2 started processes)

x64 7zip, WITH admin privilegies, extention on command line: inkscape freezes (ca. 1 out of 2 started processes), but NOT when no inkscape process was started from THIS cmd window before

Revision history for this message
Nokir (nokir) wrote :
Revision history for this message
Nokir (nokir) wrote :
Revision history for this message
Nokir (nokir) wrote :

Edit: Tests were done on Windows 8.1 Pro 64bit

Revision history for this message
Patrick Storz (ede123) wrote :

@Nokir: Thank you for these very extensive tests!

If I interpret your results correctly this means all configurations crash occasionally? The thing with frequency is that I already observed that this is *extremely* arbitrary (sometimes it does not happen at all, at other times it happens almost all the time). So it might well be that if you try the same tests tomorrow the results might look differently.

What you might try: There are development builds using MSYS2 available from [1]. They still lock up occasionally I'm afraid, but maybe that has other reasons. (At the very least it's worth a try...)

Also I did some experiments the last two days with a newer version of "libgc" (the library we use for garbage collection). In the new versions a lockup issue was worked around (I'm not sure if we were affected but who knows...). You can get a brand new nightly build including that updated version directly from [2] (select a build, MING32 for 32-bit / MINGW64 for 64-bit and click on artifacts to get to the download link).

[1] https://download.tuxfamily.org/inkscape/
[2] https://ci.appveyor.com/project/inkscape/inkscape

Revision history for this message
Nokir (nokir) wrote :

Out of the 24 combinations I tested, 3 combinations froze and one combination had the wrong exit status. All 20 other combinations were fine. For example, I had not a single frozen 32bit process.

Revision history for this message
Patrick Storz (ede123) wrote :

Ah, sorry, I misread...
So basically 64-bit versions have shown to be problematic, which is probable as they're based on a completely different build system (mingw vs mingw-w64, where the -w64 does not simply mean "64-bit" but is a significantly diverged fork of the former).

I'm not sure if the further differentiation into execution type / privileges really can be trusted as there seem to be additional factors involved, e.g. you noted different behavior depending on wether you launched Inkscape on a command line before or not. I'm not sure if this really can affect the Inkscape process directly (it should not as far as I know) unless we change environment (which I'm pretty certain we do not; it can be quickly checked by executing the "set" command to print all environment variables before and after running Inkscape and on my system the output is identical). So I'm really suspecting something very fundamental...

If you (or somebody else who's frequently experiencing hangs) could test the newer MSYS2 builds that could be helpful. They're also based on mingw-w64 (this time both 64-bit but also 32-bit builds) but use significantly newer library versions and some additional patches/fixes which were not included in the mingw-w64 build currently used for stable releases.

Revision history for this message
Patrick Storz (ede123) wrote :

P.S. Sorry if I sound a bit skeptical towards your undoubtedly very systematic tests, but from everything I learned so far the issue is highly un-systematic, so it's hard to trust tests one does today as results might differ tomorrow. I did not only think once that I finally found the source (no more hangs!) only to experience the same issues again with seemingly identical parameters some time later... (For all I know it might be an uninitialized variable / invalid pointer and behavior may change on every run depending on the memory layout).

Revision history for this message
Nokir (nokir) wrote :
Revision history for this message
Patrick Storz (ede123) wrote :

That's great news!

FYI we just released Inkscape 0.92.2 which is built the same way as those you cited, so I'm optimisitc we could overcome this.

I'm not completely sure what might have fixed it, though. Likely seem:
- the fix for bug #1670688
- the switch of Python (new builds use a custom gcc-built Python instead of the "official" Python built with Visual C++
- an update to libgc (the library we use for garbage collection) which fixed at least one dead-lock scenario.

Revision history for this message
Patrick Storz (ede123) wrote :

I've not seen this issue re-appear in Inkscape 0.92.2 release so far, so I think it's safe to assume it was fixed.

If anybody still experiences this with Inkscape 0.92.2 please report back, so we can look into it again.

Changed in inkscape:
status: New → Fix Released
Revision history for this message
Saurabh Dasgupta (sau001) wrote :

Hi All,
Firstly - many thanks for providing this support forum. I was facing a problem very similar to what is being discussed here. My platform is Windows Server 2016.

I was using the version "0.92.0 r15299" and the executable would hang randomly.

When I switched to "0.92.3 (2405546, 2018-03-11)" , the problem disappeared.

Just thought I should let you all know.

Thanks,
Saurabh

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.