cura_app.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2022 Ultimaker B.V.
  3. # Cura is released under the terms of the LGPLv3 or higher.
  4. # Remove the working directory from sys.path.
  5. # This fixes a security issue where Cura could import Python packages from the
  6. # current working directory, and therefore be made to execute locally installed
  7. # code (e.g. in the user's home directory where AppImages by default run from).
  8. # See issue CURA-7081.
  9. import sys
  10. if "" in sys.path:
  11. sys.path.remove("")
  12. import argparse
  13. import faulthandler
  14. import os
  15. # set the environment variable QT_QUICK_FLICKABLE_WHEEL_DECELERATION to 5000 as mentioned in qt6.6 update log to overcome scroll related issues
  16. os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ.get("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000")))
  17. if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway.
  18. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul.
  19. os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul.
  20. os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul.
  21. from PyQt6.QtNetwork import QSslConfiguration, QSslSocket
  22. from UM.Platform import Platform
  23. from cura import ApplicationMetadata
  24. from cura.ApplicationMetadata import CuraAppName
  25. from cura.CrashHandler import CrashHandler
  26. try:
  27. import sentry_sdk
  28. with_sentry_sdk = True
  29. except ImportError:
  30. with_sentry_sdk = False
  31. parser = argparse.ArgumentParser(prog = "cura",
  32. add_help = False)
  33. parser.add_argument("--debug",
  34. action = "store_true",
  35. default = False,
  36. help = "Turn on the debug mode by setting this option."
  37. )
  38. known_args = vars(parser.parse_known_args()[0])
  39. if with_sentry_sdk:
  40. sentry_env = "unknown" # Start off with a "IDK"
  41. if hasattr(sys, "frozen"):
  42. sentry_env = "production" # A frozen build has the possibility to be a "real" distribution.
  43. if ApplicationMetadata.CuraVersion == "master":
  44. sentry_env = "development" # Master is always a development version.
  45. elif "beta" in ApplicationMetadata.CuraVersion or "BETA" in ApplicationMetadata.CuraVersion:
  46. sentry_env = "beta"
  47. elif "alpha" in ApplicationMetadata.CuraVersion or "ALPHA" in ApplicationMetadata.CuraVersion:
  48. sentry_env = "alpha"
  49. try:
  50. if ApplicationMetadata.CuraVersion.split(".")[2] == "99":
  51. sentry_env = "nightly"
  52. except IndexError:
  53. pass
  54. # Errors to be ignored by Sentry
  55. ignore_errors = [KeyboardInterrupt, MemoryError]
  56. try:
  57. sentry_sdk.init("https://5034bf0054fb4b889f82896326e79b13@sentry.io/1821564",
  58. before_send = CrashHandler.sentryBeforeSend,
  59. environment = sentry_env,
  60. release = "cura%s" % ApplicationMetadata.CuraVersion,
  61. default_integrations = False,
  62. max_breadcrumbs = 300,
  63. server_name = "cura",
  64. ignore_errors = ignore_errors)
  65. except Exception:
  66. with_sentry_sdk = False
  67. if not known_args["debug"]:
  68. def get_cura_dir_path():
  69. if Platform.isWindows():
  70. appdata_path = os.getenv("APPDATA")
  71. if not appdata_path: #Defensive against the environment variable missing (should never happen).
  72. appdata_path = "."
  73. return os.path.join(appdata_path, CuraAppName)
  74. elif Platform.isLinux():
  75. return os.path.expanduser("~/.local/share/" + CuraAppName)
  76. elif Platform.isOSX():
  77. return os.path.expanduser("~/Library/Logs/" + CuraAppName)
  78. # Do not redirect stdout and stderr to files if we are running CLI.
  79. if hasattr(sys, "frozen") and "cli" not in os.path.basename(sys.argv[0]).lower():
  80. dirpath = get_cura_dir_path()
  81. os.makedirs(dirpath, exist_ok = True)
  82. sys.stdout = open(os.path.join(dirpath, "stdout.log"), "w", encoding = "utf-8")
  83. sys.stderr = open(os.path.join(dirpath, "stderr.log"), "w", encoding = "utf-8")
  84. # WORKAROUND: GITHUB-88 GITHUB-385 GITHUB-612
  85. if Platform.isLinux(): # Needed for platform.linux_distribution, which is not available on Windows and OSX
  86. # For Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-qt4/+bug/941826
  87. # The workaround is only needed on Ubuntu+NVidia drivers. Other drivers are not affected, but fine with this fix.
  88. try:
  89. import ctypes
  90. from ctypes.util import find_library
  91. libGL = find_library("GL")
  92. ctypes.CDLL(libGL, ctypes.RTLD_GLOBAL)
  93. except:
  94. # GLES-only systems (e.g. ARM Mali) do not have libGL, ignore error
  95. pass
  96. # When frozen, i.e. installer version, don't let PYTHONPATH mess up the search path for DLLs.
  97. if Platform.isWindows() and hasattr(sys, "frozen"):
  98. try:
  99. del os.environ["PYTHONPATH"]
  100. except KeyError:
  101. pass
  102. # GITHUB issue #6194: https://github.com/Ultimaker/Cura/issues/6194
  103. # With AppImage 2 on Linux, the current working directory will be somewhere in /tmp/<rand>/usr, which is owned
  104. # by root. For some reason, QDesktopServices.openUrl() requires to have a usable current working directory,
  105. # otherwise it doesn't work. This is a workaround on Linux that before we call QDesktopServices.openUrl(), we
  106. # switch to a directory where the user has the ownership.
  107. if Platform.isLinux() and hasattr(sys, "frozen"):
  108. os.chdir(os.path.expanduser("~"))
  109. # WORKAROUND: GITHUB-704 GITHUB-708
  110. # It looks like setuptools creates a .pth file in
  111. # the default /usr/lib which causes the default site-packages
  112. # to be inserted into sys.path before PYTHONPATH.
  113. # This can cause issues such as having libsip loaded from
  114. # the system instead of the one provided with Cura, which causes
  115. # incompatibility issues with libArcus
  116. if "PYTHONPATH" in os.environ.keys(): # If PYTHONPATH is used
  117. PYTHONPATH = os.environ["PYTHONPATH"].split(os.pathsep) # Get the value, split it..
  118. PYTHONPATH.reverse() # and reverse it, because we always insert at 1
  119. for PATH in PYTHONPATH: # Now beginning with the last PATH
  120. PATH_real = os.path.realpath(PATH) # Making the the path "real"
  121. if PATH_real in sys.path: # This should always work, but keep it to be sure..
  122. sys.path.remove(PATH_real)
  123. sys.path.insert(1, PATH_real) # Insert it at 1 after os.curdir, which is 0.
  124. def exceptHook(hook_type, value, traceback):
  125. from cura.CrashHandler import CrashHandler
  126. from cura.CuraApplication import CuraApplication
  127. has_started = False
  128. if CuraApplication.Created:
  129. has_started = CuraApplication.getInstance().started
  130. #
  131. # When the exception hook is triggered, the QApplication may not have been initialized yet. In this case, we don't
  132. # have an QApplication to handle the event loop, which is required by the Crash Dialog.
  133. # The flag "CuraApplication.Created" is set to True when CuraApplication finishes its constructor call.
  134. #
  135. # Before the "started" flag is set to True, the Qt event loop has not started yet. The event loop is a blocking
  136. # call to the QApplication.exec(). In this case, we need to:
  137. # 1. Remove all scheduled events so no more unnecessary events will be processed, such as loading the main dialog,
  138. # loading the machine, etc.
  139. # 2. Start the Qt event loop with exec() and show the Crash Dialog.
  140. #
  141. # If the application has finished its initialization and was running fine, and then something causes a crash,
  142. # we run the old routine to show the Crash Dialog.
  143. #
  144. from PyQt6.QtWidgets import QApplication
  145. if CuraApplication.Created:
  146. _crash_handler = CrashHandler(hook_type, value, traceback, has_started)
  147. if CuraApplication.splash is not None:
  148. CuraApplication.splash.close()
  149. if not has_started:
  150. CuraApplication.getInstance().removePostedEvents(None)
  151. _crash_handler.early_crash_dialog.show()
  152. sys.exit(CuraApplication.getInstance().exec())
  153. else:
  154. _crash_handler.show()
  155. else:
  156. application = QApplication(sys.argv)
  157. application.removePostedEvents(None)
  158. _crash_handler = CrashHandler(hook_type, value, traceback, has_started)
  159. # This means the QtApplication could be created and so the splash screen. Then Cura closes it
  160. if CuraApplication.splash is not None:
  161. CuraApplication.splash.close()
  162. _crash_handler.early_crash_dialog.show()
  163. sys.exit(application.exec())
  164. # Set exception hook to use the crash dialog handler
  165. sys.excepthook = exceptHook
  166. # Enable dumping traceback for all threads
  167. if sys.stderr and not sys.stderr.closed:
  168. faulthandler.enable(file = sys.stderr, all_threads = True)
  169. elif sys.stdout and not sys.stdout.closed:
  170. faulthandler.enable(file = sys.stdout, all_threads = True)
  171. from cura.CuraApplication import CuraApplication
  172. # WORKAROUND: CURA-6739
  173. # The CTM file loading module in Trimesh requires the OpenCTM library to be dynamically loaded. It uses
  174. # ctypes.util.find_library() to find libopenctm.dylib, but this doesn't seem to look in the ".app" application folder
  175. # on Mac OS X. Adding the search path to environment variables such as DYLD_LIBRARY_PATH and DYLD_FALLBACK_LIBRARY_PATH
  176. # makes it work. The workaround here uses DYLD_FALLBACK_LIBRARY_PATH.
  177. if Platform.isOSX() and getattr(sys, "frozen", False):
  178. old_env = os.environ.get("DYLD_FALLBACK_LIBRARY_PATH", "")
  179. # This is where libopenctm.so is in the .app folder.
  180. search_path = os.path.join(CuraApplication.getInstallPrefix(), "MacOS")
  181. path_list = old_env.split(":")
  182. if search_path not in path_list:
  183. path_list.append(search_path)
  184. os.environ["DYLD_FALLBACK_LIBRARY_PATH"] = ":".join(path_list)
  185. import trimesh.exchange.load
  186. os.environ["DYLD_FALLBACK_LIBRARY_PATH"] = old_env
  187. # WORKAROUND: CURA-6739
  188. # Similar CTM file loading fix for Linux, but NOTE THAT this doesn't work directly with Python 3.5.7. There's a fix
  189. # for ctypes.util.find_library() in Python 3.6 and 3.7. That fix makes sure that find_library() will check
  190. # LD_LIBRARY_PATH. With Python 3.5, that fix needs to be backported to make this workaround work.
  191. if Platform.isLinux() and getattr(sys, "frozen", False):
  192. old_env = os.environ.get("LD_LIBRARY_PATH", "")
  193. # This is where libopenctm.so is in the AppImage.
  194. search_path = os.path.join(CuraApplication.getInstallPrefix(), "bin")
  195. path_list = old_env.split(":")
  196. if search_path not in path_list:
  197. path_list.append(search_path)
  198. os.environ["LD_LIBRARY_PATH"] = ":".join(path_list)
  199. import trimesh.exchange.load
  200. os.environ["LD_LIBRARY_PATH"] = old_env
  201. # WORKAROUND: Cura#5488
  202. # When using the KDE qqc2-desktop-style, the UI layout is completely broken, and
  203. # even worse, it crashes when switching to the "Preview" pane.
  204. if Platform.isLinux():
  205. os.environ["QT_QUICK_CONTROLS_STYLE"] = "default"
  206. if ApplicationMetadata.CuraDebugMode:
  207. ssl_conf = QSslConfiguration.defaultConfiguration()
  208. ssl_conf.setPeerVerifyMode(QSslSocket.PeerVerifyMode.VerifyNone)
  209. QSslConfiguration.setDefaultConfiguration(ssl_conf)
  210. app = CuraApplication()
  211. app.run()