Bug 13548 - Uploading a N2N file ends up with missing Status and download icon
Summary: Uploading a N2N file ends up with missing Status and download icon
Status: CLOSED FIXED
Alias: None
Product: IPFire
Classification: Unclassified
Component: --- (show other bugs)
Version: 2
Hardware: all All
: - Unknown - Minor Usability
Assignee: Adolf Belka
QA Contact:
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-01-23 13:04 UTC by Adolf Belka
Modified: 2024-04-20 08:09 UTC (History)
0 users

See Also:


Attachments
This shows the result at the n2n client end (46.46 KB, image/png)
2024-01-23 13:04 UTC, Adolf Belka
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Adolf Belka 2024-01-23 13:04:10 UTC
Created attachment 1451 [details]
This shows the result at the n2n client end

When I did the fix for bug#11408 it looks like I put the pass/nopass entry for net to net configurations into a variable key number that is also used by some other entries.

This means that when the configuration file is uploaded some entries end up overwriting the pass/nopass entry and this means the code does not know which icon to use or how to place the Status cell.

I found this when testing out CU183 Testing but it was already present in CU182. Basically this problem has been present since CU181 when the fix for bug#11408 was released.

I though I had tested out the n2n configuration but obviously not well enough.

This is just a visual effect in not being able to see the status on the client end. I have confirmed that the n2n tunnel works without any issues.

I will pick this up and find the solution and submit it.
Comment 1 Adolf Belka 2024-01-23 13:07:08 UTC
What I should also have said is that any existing n2n client connections work fine.

The problem is only if a new n2n client is uploaded.

Maybe that is where I missed it as I checked out that the existing n2n client end was working fine but did not upload a new n2n client configuration.
Comment 2 Adolf Belka 2024-02-01 11:41:31 UTC
I have identified what the problem is.

In ovpnmain.cgi at line 3475 there is a line of code for the n2n config

	$confighash{$key}[41] = 'disabled';

That line has been there for a long time looking back through the Core Updates. but the disabled setting in key 41 has not been used.

However {$key}[41] is used for defining pass or no-pass for if the certificate has a password and is secure or no password and is insecure.

From bug#11408 no-pass was added in not just for the Road Warriors but also for the Net 2 Net configs.
That line of code was missed when doing that bug fix. For any existing n2n connections the update added in no-pass into that key. However if a new n2n config is uploaded into the client end then key 41 is set to disabled but all the code is only looking for pass or no-pass.

The simple fix is to change that line from disabled to no-pass. As that section of code only deals with n2n configs there is no need to check if the certificate has a password or not as all the n2n configs have no password.

I made the change and tested it out and it has worked.

I will now submit a patch fix for this.
Comment 5 Adolf Belka 2024-04-05 13:35:56 UTC
CU185 Testing has been released

https://www.ipfire.org/blog/ipfire-2-29-core-update-185-is-available-for-testing
Comment 6 Adolf Belka 2024-04-05 14:12:20 UTC
Tested out on CU185 Testing the import of a N2N file into the client end and it worked without the original problem that this bug was raised for.

This verifies that the bug fix has worked.