Since I installed TortoiseHG 6.2.1, x64 on Windows, when I try to pull/push to our server, I get the error:
'''
URLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)
'''
The behavior is similar to what is present in the issue #5745 (closed).
I've tried (from command line):
> hg debugssl https://<ourserver>.comchecking the certificate chain for <ourserver>.comfull certificate chain is available
And (from a repo that was working):
> hg incoming(the full certificate chain may not be available locally; see "hg help debugssl")abortito: errore: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)
I've tried also a virtualenv (python 3.10) with pip install mercurial and that one works as expected.
Reverting to TortoiseHg 6.1.3 works as expected.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
...
Show closed items
Linked items
0
Link issues together to show that they're related.
Learn more.
Do you know what version of certifi you have installed in the venv (if any)? 2022.6.15 should be bundled with the Windows app. The thg build script uses contrib/packaging/requirements-windows-pyqt5-installer.txt to setup its venv. Does it work from that venv?
I'm also curious if the vanilla Mercurial install has the same issue. The executable environment is different for hg.exe in the thg install, the PyPI mercurial install, and the vanilla mercurial MSI installer. (Be careful about if you're running the hg.exe that comes with the thg install vs the hg install- I routinely get tripped up when both are installed.)
Can you provide any more detail about the certificate being used? I assume I can't access the server to test for privacy reasons, but it works for me at work.
Sorry but I don't get your first question, I have no venv for TortoiseHG (I installed through MSI installer).
However:
For the certificate: it is a self-signed certificate from the CA of our domain controller and the CA certificates are distributed through Windows policies into the root CAs, so the certificates are trusted (I can confirm that also browsing to the repos, hosted on an on-premise installation of RhodeCode). No intermediate certificates are used.
I've tried with the vanilla MSI installer as suggested, the problem appears also with it (but, as said, not with PyPI installation in a venv).
Something I can do to debug the issue? Any suggestion?
EDIT: Tried to create a venv with contrib/packaging/requirements-windows-pyqt5-installer.txt requirements (through pip install -r requirements.txt) and the problem is present.
EDIT 2:pip uninstall certifi solves the issue in the venv created with contrib/packaging/requirements-windows-pyqt5-installer.txt...
pip uninstall certifi solves the issue in the venv created with contrib/packaging/requirements-windows-pyqt5-installer.txt
Interesting, and kinda what I feared. The py2 builds (up to 6.1.3) included certifi==2019.11.28, but didn't go any farther because it dropped py2 support. The py3 builds (6.2 and later) have certifi==2022.6.15 (vanilla hg has something a bit older, IIRC). Apparently certifi is included because of some hg-git dependency. So IDK if this is a py3 thing, a newer certifi thing, or some combination. Can you try recreating the venv per the first edit here, and then pip install certifi==2019.11.28?
Something I can do to debug the issue? Any suggestion?
If you're familiar with hg internals, hg debugshell will get you a pseudo REPL environment, so you can poke around and examine things. You wouldn't need to do a full push/pull, simply invoke the underlying code that tries to make a connection to the remote system. Also, you can try deleting the certifi code out of library.zip for thg, and %PROGRAMFILES%\Mercurial\lib for the vanilla install to see if they start working again.
stack-1.txt is the one from the TortoiseHG installation.
stack-1.txt
stack-2.txt is from the venv built from contrib/packaging/requirements-windows-pyqt5-installer.txtstack-2.txt
I've tried to look into the code of Mercurial and I've found that the problem is somehow in sslutil.py file...
If certifi is not installed the code calls sslcontext.load_default_certs() otherwise it loads from sslcontext.load_verify_locations(cafile=settings[b'cafile']).
It seems that or sslcontext.load_default_certs(...) does not load the Windows CAs for some reason or the behavior is by design. Quite confused...
I've tried also installing the previous version of certifi in the venv as you told, but the problem still persists.
It's probably wrong to bundle certifi in installer. It is a separate certificates source,
and the system certificates wouldn't be loaded if certifi could be imported.
I guess I'm confused- certifi is bundled because dulwich declares it as a dependency, so it gets sucked into the requirements file. We could probably put it in the module exclude list for py2exe because dulwich internally handles when it can't load certifi[1], but that wouldn't help pyoxidizer to exclude it from the plain hg installer since it uses the requirements file. Is there a way to tell pip-compile to ignore a dependency? I thought not since last time I looked, people were writing python scripts to remove stuff from the generated requirements.
I have no idea about packaging stuff. On Linux, the situation is quite different from Windows/macOS, and I found python3-certifi deb is patched to use the system certificates. :)
We could add a config knob for hg to distrust certifi, but that would introduce inconsistency between hg and hg-git. So I think it's best to remove certifi.