Trouble installing SmartClient on MacOS Sierra
-
@Daniel-Miller I have read you message at least four times now but I still don’t fully understand.
That was just substituting StoreLocation.CurrentUser for StoreLocation.LocalMachine in GenericSetup.cs, yes?
Yes I think so. Just checked the diff I had lying around:
diff --git a/SetupHelper/GenericSetup.cs b/SetupHelper/GenericSetup.cs index a9b7a72..d4e2f41 100644 --- a/SetupHelper/GenericSetup.cs +++ b/SetupHelper/GenericSetup.cs @@ -110,7 +110,7 @@ namespace FOG try { - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); store.Remove(cert); store.Close(); @@ -129,7 +129,7 @@ namespace FOG try { var cert = new X509Certificate2(location); - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); var cers = store.Certificates.Find(X509FindType.FindBySubjectName, "FOG Project", true); @@ -168,7 +168,7 @@ namespace FOG try { X509Certificate2 CAroot = null; - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadOnly); var cers = store.Certificates.Find(X509FindType.FindBySubjectName, "FOG Project", true); @@ -191,7 +191,7 @@ namespace FOG try { - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); store.Remove(cert); store.Close();
but something about how the installer is built isn’t getting the auxiliary files (.sh, .dll, etc.) packed with the executable
Can you be more specific on what’s going wrong here or why you think the files are not packed?
Which version are you trying to build from? Latest
master
? Since we talked about this last in June (!) I have pushed a commit to update dependencies. This is causing a bit of trouble and I have not found the time to properly get this right again. Please use commit b2995511 for now! Sorry for that.You might also want to change the build script to get more output:
diff --git a/build.ps1 b/build.ps1 index 0773e88..f15bfc0 100644 --- a/build.ps1 +++ b/build.ps1 @@ -118,7 +118,7 @@ Copy-Item "$PSScriptRoot\bin\FOGService.msi" $InstallerMSI Copy-Item "$PSScriptRoot\bin\FOGService.msi" "$PSScriptRoot\out\FOGService.msi" Write-Host "Building Smart Installer" -Invoke-Expression ($msbuild + $installerConfig) | out-null +Invoke-Expression ($msbuild + $installerConfig) #| out-null Write-Host "ILMerging Smart Installer"
-
@Sebastian-Roth
That diff matches the one I had for GenericSetup.cs.Lots of little things, like Visual Studio complaining about the name of OSX-FOG-TRAY.ZIP (renamed it to make it happy, but don’t know if I found all the references), SmartInstaller.exe only being 4.5 MB, and initial error messages about not being able to find Zazzles.dll when running the executable. Resynches off the current master and that commit seems to do the same thing, so I’m almost certain it’s something wrong with how my environment is set up and very likely due to MS not distributing ilmerge any more. Does this GitHub for ILMerge look like the same beast?
And this is all assuming I am actually synching to the points I am intending to … I’m a little new to using source control.
-
@Daniel-Miller said:
That diff matches the one I had for GenericSetup.cs.
Good.
Lots of little things, like Visual Studio complaining about the name of OSX-FOG-TRAY.ZIP (renamed it to make it happy, but don’t know if I found all the references)
Right, I keep forgetting about this one. Should have fixed that a long time ago. I usually rename it after cloning the fresh source and soon forget about it. It’s good others look into this as well.
SmartInstaller.exe only being 4.5 MB, and initial error messages about not being able to find Zazzles.dll when running the executable. Resynches off the current master and that commit seems to do the same thing, so I’m almost certain it’s something wrong with how my environment is set up and very likely due to MS not distributing ilmerge any more. Does this GitHub for ILMerge look like the same beast?
Yes, sounds very much like it. Something I have not noticed yet as we have our build environment set up since a long time. Good three years ago when I updated the build instrcutions in README.md the download from Microsoft still was available. The one you found in github looks very promising but seems like there are no official MSI releases that you can simply install as it used to. I will look into that and get back to you in a few hours.
And this is all assuming I am actually synching to the points I am intending to … I’m a little new to using source control.
What you usually do on the command line - and I assume you have the same options in a GUI GIT tool:
- Clone a copy of the repo - you can skip that as you’ve already done that:
git clone https://github.com/FOGproject/fog-client
- Now the repo is on
master
branch latest version and you want to checkout a different version:cd fog-client; git ccheckout b2995511
- Open the project in Visual Studio - or reload if you had it open already!
- Clone a copy of the repo - you can skip that as you’ve already done that:
-
@Daniel-Miller Have not found the time to work on this but doing a bit more search engine foo I found this: https://github.com/mono/nuget/blob/master/Tools/ILMerge/ILMerge.msi
You might use that older version of ILMerge till we get the other one ready.
-
@Sebastian-Roth Seems to be a lot happier on the build side, but the exe is still a bit anemic, only 6.2MB as opposed to the 8.9MB that is on my servers. It does run and properly relaunches, so the requisite dlls are there, but fails during the Installing Files stage with errors in the log
9/11/2019 4:59 PM Installer ERROR: Method: <Install>b__0 9/11/2019 4:59 PM Installer ERROR: Central Directory corrupt.
I would guess the service scripts, tray executables, etc. still aren’t getting bundled in.
Looking at the build script, I don’t see where they get attached, or are those supposed to be configured as resources in the properties for UniversalInstaller?
-
@Daniel-Miller Yeah, still sounds like there is something missing. Try removing the
| out-null
at the end of the lines to get more output from the commands inbuild.ps1
. As well you might want to try this if you have a Windows PC at hand: Copy the SmartInstaller.exe over to that PC and use 7-Zip to extract the EXE file. Within the extracted files you find one that is several MB in size called.text
. Again, rightclick that file and use 7-Zip to extract it. It will do some extraction but also print an error message. But again you should have files extracted. How many files does it extract from your binary on the second run?9/11/2019 4:59 PM Installer ERROR: Method: <Install>b__0 9/11/2019 4:59 PM Installer ERROR: Central Directory corrupt.
I haven’t seen this error before. I’ve dug through the code but can’t seem to figure out why it says
b__0
!? When extracting manually as described above you get filenames likeZazzles
and so on. -
@Sebastian-Roth Never seen that error before, you say? Now don’t I feel special.
Extracting.text
gives me 50 files and they seem to reasonably match (by filename and checksum) the 48 extracted from production version. Extra files are a Modulespt and ShutdownGUIpt.Google-foo indicates the “Central Directory corrupt” error results from some interaction with a zip archive and the b__0 might be a reference to some helper class. Only place I’m seeing in the install process that might bump into that would be the extraction of osxfogtray.zip. I still don’t see where that zip gets bundled in either the working build or the production build, but just for ho-hos I decided to take a peek at what that file looks like and it appears to be 0 bytes in size. As that probably isn’t right for a zip archive, I checked the repo and oddly enough the file ./UniversalInstaller/Scripts/OSX-FOG-TRAY.zip is 0 bytes in size and it looks like it has been that way since the initial commit.
-
@Daniel-Miller Ohhh gosh!! I see our build process is pretty well messed up. Sorry for all the issues you run into and wast all your time on.
Please download the OSX Tray ZIP here for now: https://github.com/FOGProject/fog-client/releases/download/0.11.16/OSXFOGTray.zip
Thank you very much for sticking around even though things are not going very well. We just don’t have enough people to help out and work on all the different FOG components and so things get messy - too bad.
-
@Sebastian-Roth it’s almost like an open source project depends on free labor or something …
All right, still don’t see how that gets brought it, but it is building, a healthy 8.75 MB, and the installation process is now happy with the install files segment. But now we’re back to the Cert Pinning issue, however (names changed to protect the guilty).
9/12/2019 4:28 PM Data::RSA ERROR: Unable to retrieve FOG Server CA 9/12/2019 4:28 PM Data::RSA ERROR: FOG Server CA NOT found in keystore 9/12/2019 4:28 PM Middleware::Communication Download: http://fogserver/fog/management/other/ca.cert.der 9/12/2019 4:28 PM Data::RSA Injecting root CA: 9/12/2019 4:28 PM Data::RSA ERROR: Unable to inject CA 9/12/2019 4:28 PM Data::RSA ERROR: Access to the path '/usr/share/.mono/certs/Trust' is denied.
Which brings us back to GenericSetup and the cert store. Currently the diff between my current and commit b299551 is:
@@ -108,11 +108,11 @@ namespace FOG var cert = RSA.ServerCertificate(); if (cert == null) return false; try { - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); store.Remove(cert); store.Close(); return true; } @@ -127,11 +127,11 @@ namespace FOG public static bool InstallFOGCert(string location) { try { var cert = new X509Certificate2(location); - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); var cers = store.Certificates.Find(X509FindType.FindBySubjectName, "FOG Project", true); var validKeyPresent = false; if (cers.Count > 0) @@ -166,11 +166,11 @@ namespace FOG { var cert = new X509Certificate2(); try { X509Certificate2 CAroot = null; - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadOnly); var cers = store.Certificates.Find(X509FindType.FindBySubjectName, "FOG Project", true); if (cers.Count > 0) { @@ -189,11 +189,11 @@ namespace FOG if (cert == null) return; try { - var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine); + var store = new X509Store(StoreName.Root, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadWrite); store.Remove(cert); store.Close(); } catch (Exception ex)
Unless I’m missing something, those are the changes you made, yes? I am a bit confused about why it is trying to throw it in /usr/share. There has been a change in the version of mono (6.0.0.327), but running the version of SmartInstaller.exe you sent works as expected when executed under the context of root.
There anything else I should need to clean out other than SetupHelper.* in ./bin to make sure it has the right version in the exe build? Other thoughts?
-
@Daniel-Miller said in Trouble installing SmartClient on MacOS Sierra:
Injecting root CA
Obviously we have missed RSA.cs in Zazzles! There are two places in that code file, line 155 and line 202.
Zazzles is another github repo you need to clone and open in Visual Studio. I’d suggest you don’t use the latest master but checkout commit 0f13a4caf as I have messed with the external libraries here as well. After it’s built you need to manually copy the new
Zazzles.dll
over to yourfog-client\libs
(from the top of my head I think this is the correct location) folder, close Zazzles project in Visual Studio, reopen fog-client project and re-build the solution.We are getting there!
If for some reason FOGService is not properly starting or you see some very strange behaviour, then let me know. Don’t waste your time to try and figure it out. It is possible that I got something wrong with the hints here - writing this while sitting in the train and don’t have all my tools here.
-
@Sebastian-Roth Alrightly, rebuilt Zazzles with the change and now the installer is happy. FOGService isn’t starting, however, or at least fog tray isn’t starting and when I manually start it it is complaining about not being able to connect to the bus.
-
@Daniel-Miller said in Trouble installing SmartClient on MacOS Sierra:
FOGService isn’t starting, however, or at least fog tray isn’t starting and when I manually start it it is complaining about not being able to connect to the bus.
Can you post more details on this? Log output?
-
@Sebastian-Roth
/opt/fog-service/fog.log
was an empty file after rebooting the machine. Manually launching the service (sudo /opt/fog-service/control.sh start
) produces the familiar logs but complains about FOG Server CA NOT found in keystore:9/17/2019 10:09 AM Main Overriding exception handling 9/17/2019 10:09 AM Main Bootstrapping Zazzles 9/17/2019 10:09 AM Controller Initialize 9/17/2019 10:09 AM Controller Start 9/17/2019 10:09 AM Service Starting service 9/17/2019 10:09 AM Bus Became bus server 9/17/2019 10:09 AM Bus Emmiting message on channel: Status 9/17/2019 10:09 AM Service Invoking early JIT compilation on needed binaries ------------------------------------------------------------------------------ --------------------------------Authentication-------------------------------- ------------------------------------------------------------------------------ 9/17/2019 10:09 AM Client-Info Version: 0.11.16 9/17/2019 10:09 AM Client-Info OS: Mac 9/17/2019 10:09 AM Middleware::Authentication Waiting for authentication timeout to pass 9/17/2019 10:09 AM Middleware::Communication Download: http://10.10.25.15/fog/management/other/ssl/srvpublic.crt 9/17/2019 10:09 AM Data::RSA ERROR: Unable to retrieve FOG Server CA 9/17/2019 10:09 AM Data::RSA ERROR: FOG Server CA NOT found in keystore 9/17/2019 10:09 AM Middleware::Authentication ERROR: Could not authenticate 9/17/2019 10:09 AM Middleware::Authentication ERROR: Value cannot be null. Parameter name: authority
Manually relaunching the service under the root user context (
sudo -i /opt/fog-service/control.sh start
) shows it starting to communicate normally:------------------------------------------------------------------------------ --------------------------------Authentication-------------------------------- ------------------------------------------------------------------------------ 9/17/2019 10:15 AM Client-Info Version: 0.11.16 9/17/2019 10:15 AM Client-Info OS: Mac 9/17/2019 10:15 AM Middleware::Authentication Waiting for authentication timeout to pass 9/17/2019 10:17 AM Controller Stop 9/17/2019 10:17 AM Service Stop requested 9/17/2019 10:17 AM Middleware::Authentication ERROR: Could not authenticate 9/17/2019 10:17 AM Middleware::Authentication ERROR: Thread was being aborted. 9/17/2019 10:17 AM Bus Emmiting message on channel: Status 9/17/2019 10:17 AM Main Overriding exception handling 9/17/2019 10:17 AM Main Bootstrapping Zazzles 9/17/2019 10:17 AM Controller Initialize 9/17/2019 10:17 AM Controller Start 9/17/2019 10:17 AM Service Starting service 9/17/2019 10:17 AM Bus Became bus server 9/17/2019 10:17 AM Bus Emmiting message on channel: Status 9/17/2019 10:17 AM Service Invoking early JIT compilation on needed binaries ------------------------------------------------------------------------------ --------------------------------Authentication-------------------------------- ------------------------------------------------------------------------------ 9/17/2019 10:17 AM Client-Info Version: 0.11.16 9/17/2019 10:17 AM Client-Info OS: Mac 9/17/2019 10:17 AM Middleware::Authentication Waiting for authentication timeout to pass 9/17/2019 10:17 AM Middleware::Communication Download: http://10.10.25.15/fog/management/other/ssl/srvpublic.crt 9/17/2019 10:17 AM Data::RSA FOG Server CA cert found 9/17/2019 10:17 AM Middleware::Authentication Cert OK 9/17/2019 10:17 AM Middleware::Authentication No token found at /opt/fog-service/token.dat, this is expected if the client has not authenticated before 9/17/2019 10:17 AM Middleware::Authentication ERROR: Could not get security token 9/17/2019 10:17 AM Middleware::Authentication ERROR: Could not find file "/opt/fog-service/token.dat" 9/17/2019 10:17 AM Middleware::Communication POST URL: http://fogserver/fog/management/index.php?sub=requestClientInfo&authorize&newService 9/17/2019 10:17 AM Middleware::Response Invalid host 9/17/2019 10:17 AM Middleware::Communication URL: http://fogserver/fog/service/register.php?hostname=ASCAS-TestImac.local&mac=38:C9:86:4F:EE:1E|28:F0:76:49:AD:70|0A:F0:76:49:AD:70|26:EA:E7:94:F6:3A|1A:00:01:E3:00:70|1A:00:01:E3:00:71|1A:00:01:E3:00:70&newService&json
So, it looks like the service works, but the daemon and user agent aren’t loaded correctly. I actually don’t see where those service loads happen during install. I would expect they would be handled in Install() in MacInstall.cs as Uninstall() calls unload for the services, but the only reference I see to the load call are in StartService() in MacUpdate.cs and the OnUpdate event handler in FogUserService.cs.
-
@Daniel-Miller Hmm, making progress!
It’s strange you get the
Middleware::Response Invalid host
when starting as root. Is this host registered with FOG yet? If not, manually register it. If it is, then reset encryption data in the FOG web UI settings for this particular host.I actually don’t see where those service loads happen during install.
I think this is what you are looking for: https://github.com/FOGProject/fog-client/blob/master/UniversalInstaller/UniversalInstaller.cs#L418 (called here I suppose)
-
@Sebastian-Roth The
Middleware::Response Invalid host
was expected; the host wasn’t registered at the time of the initial query. It is now and producing logs like:9/17/2019 10:29 AM Middleware::Communication URL: http://10.10.25.15/fog/management/index.php?sub=requestClientInfo&configure&newService&json 9/17/2019 10:29 AM Middleware::Response Success 9/17/2019 10:29 AM Middleware::Communication URL: http://10.10.25.15/fog/management/index.php?sub=requestClientInfo&mac=38:C9:86:4F:EE:1E|28:F0:76:49:AD:70|0A:F0:76:49:AD:70|26:EA:E7:94:F6:3A|1A:00:01:E3:00:70|1A:00:01:E3:00:71|1A:00:01:E3:00:70&newService&json 9/17/2019 10:29 AM Middleware::Authentication Waiting for authentication timeout to pass 9/17/2019 10:29 AM Middleware::Communication Download: http://10.10.25.15/fog/management/other/ssl/srvpublic.crt 9/17/2019 10:29 AM Data::RSA FOG Server CA cert found 9/17/2019 10:29 AM Middleware::Authentication Cert OK 9/17/2019 10:29 AM Middleware::Authentication No token found at /opt/fog-service/token.dat, this is expected if the client has not authenticated before 9/17/2019 10:29 AM Middleware::Authentication ERROR: Could not get security token 9/17/2019 10:29 AM Middleware::Authentication ERROR: Could not find file "/opt/fog-service/token.dat" 9/17/2019 10:29 AM Middleware::Communication POST URL: http://10.10.25.15/fog/management/index.php?sub=requestClientInfo&authorize&newService 9/17/2019 10:29 AM Middleware::Response Success 9/17/2019 10:29 AM Middleware::Authentication Authenticated 9/17/2019 10:29 AM Middleware::Communication URL: http://10.10.25.15/fog/management/index.php?sub=requestClientInfo&mac=38:C9:86:4F:EE:1E|28:F0:76:49:AD:70|0A:F0:76:49:AD:70|26:EA:E7:94:F6:3A|1A:00:01:E3:00:70|1A:00:01:E3:00:71|1A:00:01:E3:00:70&newService&json 9/17/2019 10:29 AM Middleware::Response Success 9/17/2019 10:29 AM Middleware::Communication URL: http://10.10.25.15/fog/service/getversion.php?clientver&newService&json 9/17/2019 10:29 AM Middleware::Communication URL: http://10.10.25.15/fog/service/getversion.php?newService&json 9/17/2019 10:29 AM Service Creating user agent cache 9/17/2019 10:29 AM Middleware::Response Invalid time 9/17/2019 10:29 AM Middleware::Response No Printers 9/17/2019 10:29 AM Middleware::Response Module is disabled globally on the FOG server
Fair warning: some of this is likely just me getting familiar with the code base… correct me as necessary.
That code segment kicks off the script that starts fogservice.exe after installation, but it is only executed when the OS is linux (UniversalInstaller.cs#L308). But if fogservice.exe were to start for macOS, I don’t see any place in fogservice that registers
org.freeghost.daemon.plist
as something to be started automatically by the operating system.The (limited) documentation (Apple Terminal Users Guide, launchctl man page), a blog post, and more misc. google-foo seems to show a consensus that services are loaded via
launchctl
. I do see that the expected calls tolaunchctl
exist in UpdateHelper (using the legacyload
/unload
invocations), but I am having some difficulty tracing the execution back through Zazzles updater abstraction to there. On the surface it appears to rely on the existence of SmartInstaller.exe, so I would assume (possibly incorrectly) that the update code is only invoked when an update is called for by the fog server. In this case, the call tolaunchctl
never happens, the services (system daemon and user agent) are never registered, and the daemon doesn’t start on reboot. That would be consistent with an empty fog.log as I found.This is of course assuming there isn’t another means of registering the daemons in use, in which case It would be helpful to know what the intended implementation was so I can take a look at how it’s breaking. Otherwise, I will likely try adding in the
launchctl
invocations to Install() when I have some time to test again. -
@Daniel-Miller Thanks for the update. I myself have not used fog-client on Mac OS X yet I have to admit. So I can’t say for sure it should load after install and on reboots or not. In the wiki it says it should: https://wiki.fogproject.org/wiki/index.php/FOG_Client#Installing_-_OSX
But an older forum topic tells me that someone had this kind of issue before and here it doesn’t look like this was solved really: https://forums.fogproject.org/topic/7403/fog-client-on-mac-os-x
-
@Sebastian-Roth Added in the
launchctl
invocation fororg.freeghost.daemon.plist
at the end of Install() and things now appear to be behaving per the Wiki; the system daemon and user agent start automatically on reboot. It should be noted that thelaunchctl
invocation both starts the system daemon and registers it for restart, but the user service won’t appear until reboot. Probably should have someone look to style and location of the logic. It may make sense to add something to the IInstall interface in case other environmental issues need to be addressed for other OSs later. Likely should add something to capture the relevant environment elements that trigger the relaunch for troubleshooting, particularly to capture the state during automated installs, but the Log class wasn’t cooperating with me. Otherwise, it should be ready for some sort of functional review and testing.How would you like to proceed?
-
@Daniel-Miller Great! Do you have a github account? Would be great if we could work it in that way. Probably good to change to chat for that now. Check the speech bubble in the top right corner.
-
I am at this specific point with regards to attempting to download the cert.