Previous Thread
Next Thread
Print Thread
Page 1 of 2 1 2
A-Shell Linux DYNSTRUCT related issue #37729 26 Dec 24 10:33 AM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
Hope everyone is doing well after the holiday break.

I am experiencing a DYNSTRUCT related BASIC error when running an SBX with 7.0.1765.9/64 on Debian 12 that was compiled with 7.0.1765.9 on EL7. The BASIC error is:
Quote
?Unable to bind dynstruct to defstruct at location counter &h15EF9 of SITESELECT7.SBX


When I compile the same program with 7.0.1765.9/64 on Debian 12, it will then work fine in Debian 12. It however will not run on EL7. In that case, it fails with this BASIC error (on EL7):
Quote
?Undefined dynstruct member at location counter &h15EF9 of SITESELECT12.SBX


These are the same program. I renamed the file from SITESELECT.SBX to SITESELECT7.SBX and SITESELECT12.SBX for testing.

Jack, I am going to email you the LSX files and the SBX files generated with each platform so you can look at it when you have time. I don't see any significant difference between the LSX generated with the EL7 A-Shell and Debian 12.

Thanks,
John Andreasen
Diversified Data Software

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37730 26 Dec 24 11:32 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Hi John,

So far so good, but the year end to-do list still has many items to check off...

I've been able to confirm the error, and am pretty sure it's a 32/64 bit issue, since it also occurs between the Windows (32) and Debian (64) bit versions. I'm glad you spotted it now though as I was gearing up to release a couple of compiler updates to deal with the function wrapper and outputonly parameter issues.

Stay tuned...

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37731 26 Dec 24 03:36 PM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
OK, good to hear. I am glad it seems you were able to open the encrypted email as well.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37732 29 Dec 24 06:33 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
I'm afraid you've uncovered a problem for which there is no painless fix, at least one that I can think of. The basic problem due to packing differences related to 64 vs 32 bit pointers, the embedded defstructs in the 32 bit environment (both compiler and runtime) are different than the ones in the 64 bit environment. Which means that if the program contains embedded defstructs, it has to be run in the same architecture as it was compiled.

With some effort (partially undertaken but now being re-evaluated), I could fix the 64 bit compilation so that the programs would be 32 bit compatible. But that would mean that any program with embedded defstructs compiled under 64 bit would no longer be compatible with earlier 64 bit run-times.

I could also set the minimum runtime version in the RUN header for any program containing embedded defstructs to be 1767, so that you would immediately know about the problem, but it would still mean that you would have to recompile all affected programs and update any affected run-time versions as the same time. We could further fine-tune that by allowing you to override the minimum runtime version, so in your case, for example, you might be able to get away with compiling under Debian 12 with A-Shell 7.0.1767 and running under older CentOS 7 versions, but it would help those with multiple 64 bit run-times.

The one bright side is that embedded defstructs are relatively new, rare and exotic. Combined with the slow migration to 64 bit, it may be that hardly anyone is affected. But I think this requires a bit more contemplation before taking action. As always, suggestions welcome!

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37733 31 Dec 24 11:16 AM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
It sounds like there's not a good way to make a non-breaking change. Is there a tangle benefit to compiling with 64-bit pointers?


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37734 31 Dec 24 11:58 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
The coding fix would be slightly simpler if it was compiled in 64 bit compatibility mode. (Adding filler to the 32 bit structure to make it line up with the 64 bit version is simpler than recompiling the 64 bit version to squeeze into the 32 bit structure.) The downside is that it breaks backward compatibility with the 32 bit version, which seems more likely to affect more installations than if we break backward compatibility with the 64 bit version.

Either way, the number of affected installations is probably rather small, as I don't think embedded defstructs have been widely used. (I'm not even sure that there are any such 64 bit installations, and probably won't be able to determine that until everyone comes back to work next year.)

Given that the problem has been latent for at least a year and you were the only one to notice, depending on how much of a problem it would be for you to recompile and update all affected programs/installations, maybe that should be the determining factor.

As mentioned previously, in addition to deciding which kind of compatibility break is least painful, we also have the question of whether to set the minimum run version to 1767 for any affected program on recompilation. The upside is that it makes the issue impossible to overlook. The downside is that it breaks backward compatibility for everyone (as opposed to only the 32 bit or 64 bit subset of installations). The latest compiler will allow you to manually control that via a switch, but that's probably not going to be very practical for anyone except maybe in very specific circumstances.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37735 03 Jan 25 09:51 AM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Is there a 64-bit version of Windows A-Shell? I didn't find one in the downloads. We could migrate the K&K salesman laptops to 64-bit if needed. We don't want to be alpha/beta testers for these 60+ laptops if 64-bit is not already working in production Windows A-Shell.

Would it be a problem for the time being to make compilation 32-bit by default? Maybe setting the minimum run version to 1767 would be enough to solve this problem? I'm just thinking out loud here.

We are currently, in the process of migrating from EL7 32-bit A-Shell to Debian 12 64-bit. We have 2 development VM's for the different operation systems to ensure we can test in both environments. It's pretty easy to make the mistake of compiling in the 64-bit environment and pushing programs to a 32-bit A-Shell install.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37736 03 Jan 25 10:06 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Sorry, no. There are a couple of DLLs which I'm not sure I can get 64 bit updates for, nor is there any apparent threat to terminate 32 bit apps under Windows, so there are no immediate plans to migrate the A-Shell/Windows.

But I'm happy to report that after checking around, I don't think anyone is going to have a problem with the previously described solution which will maintain 32 bit compatibility even if compiled under 64 bit. I think I have the coding done, but between that change and some tinkering with the parameter passing mechanism to fully implement the .ARG_PASSED(@arg) function (discussed in this thread), I think I need a full day of testing here before let this out of the lab.

There's just one decision yet to make, and that is whether to automatically set the minimum runtime version (embedded in the RUN file) to 1767 for any newly compiled program with embedded defstructs, and allow you to override it via the new _MIN_RUN_VER symbol (i.e. compil prog/c:_MIN_RUN_VER=1600), or default to no change in the minimum version and let those who might be straddling the before-and-after versions in the 64 bit environment manually set the minimum version. I would be inclined toward the safer (former) option, but that largely undermines the convenience of maintaining backward 32 bit compatibility by forcing you to implement the new compiler switch in your compiler wrapper. Since I'm not aware of anyone on the other side of this problem, probably the latter approach is going to be the least disruptive for the most people.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37737 03 Jan 25 12:27 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
I would lean toward the minimum runtime version being set to 1767.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37738 03 Jan 25 01:00 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
If that's ok with you, it's ok with me. But it does mean that you'll either have to update all those laptops to 7.0.1767 if you plan to distribute any newly compiled programs (with embedded defstructs) to them. Either that or use the new _MIN_RUN_VER mechanism to override the minimum run version.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37739 03 Jan 25 03:33 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
My concern about updating the laptops was if there was an untested 64-bit exe; since that's not part of the update it should be fine.

Thanks


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37740 04 Jan 25 11:54 AM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Would it make sense to release the 32bit compiler changes before the arg_passed(). The arg pass change is going to require a fair amount of code fixes to be able to compile.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37741 04 Jan 25 12:56 PM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
Hi Jack, I did not mean to abandon the conversation here, but can see it looks like Stephen and you have come up with a reasonable solution. I agree that setting the minimum runtime version seems to be a good idea. Does this mean that one would be free to compile with either the new 32 or 64 bit versions of A-Shell and the compiled program would run on either one, or would we need to compile with only the 64 bit version going forward? Also, would there be any potential problems if the ARM version that you had released for Raspberry Pi a few years back was brought back?

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37742 04 Jan 25 02:46 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Stephen - I think it's probably not practical at this point to release them separately. The change to make OUTPUTONLY ignore any parameter passed in was in compiler edit 1047, A-Shell 7.0.1765.9, and I'm about to release 7.0.1767.0, compiler edit 1053. But I guess what I could do is add a ++PRAGMA IGNORE_OUTPUTONLY that would effectively ignore the :OUTPUTONLY qualifier, which I think would give you back the behavior you were counting on. Perhaps you could insert that into your version of ashell.def as a temporary measure, or just into each program that you recompile prior to updating the code to use .ARG_PASSED()?

John - To be clear, once you update to 7.0.1767.0, any programs compiled under either 32 or 64 bit platforms would have the same hash, and thus work the same in either environment. But, because of the new minimum runtime version, any programs recompiled with embedded defstructs would require the 1767+ runtime version to run. (Even though technically, since we are sticking with the 32 bit embedded defstruct format, you could get away with overriding the minimum runtime version and running those programs on older 32 bit A-Shell.)

As for the Raspberry Pi, I think it needs to be updated in any case, since the last release of it was 6.4.1548, before embedded defstructs were introduced. I'll put it on the to-do list to try to bring it up to 7.0, after which, in theory, it should be compatible with the other platforms/architectures.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37743 04 Jan 25 04:17 PM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
OK, thanks for the info Jack. Sounds good. Just to be clear, I'm certainly not requesting a new build for the Raspberry Pi. I did want to bring it up as I wasn't sure if the ARM architecture would have a bearing on the decision here.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37744 04 Jan 25 04:36 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Ahh - got it. I don't think ARM vs. x86 should matter. It's mainly the 32 vs 64 bit issue. The only Raspberry Pi release of A-Shell (so far) was 32 bit, but the newer Raspberry Pi's are 64 bit. Byte order might be an issue. But since we stopped producing the AIX version, all of the A-Shell platforms are little-endian. So even though the goal remains to be byte-order-independent, it's possible that a dependency has crept in somewhere without notice. Still, if we ever produce a new big-endian version, it would have to be made compatible with any existing byte-order-dependent constructs.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37745 04 Jan 25 06:07 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925

Last edited by Jack McGregor; 06 Jan 25 05:46 PM. Reason: Update links (adding -1054 suffix to distinguish from subsequent 1767.0 update below)
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37746 04 Jan 25 10:14 PM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
OK, thanks Jack. We will try them out.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37747 06 Jan 25 05:57 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
After further discussion with Stephen and reflection on the pros and cons, I've decided to make one further adjustment to the compiler (now edit 1055) which essentially backs out edit 1049 so as to allow any default value with OUTPUTONLY parameters. (Edit 1049 generated an error if the default value for an OUTPUTONLY parameter was anything other than 0 or "".) The only reason for that edit was to flag code that was depending on the misguided behavior introduced in edit 830 and then backed out in edit 1047, during which time the presence of a default value was effectively causing the OUTPUTONLY qualifier to be ignored. (That misguided behavior was motivated by a desire to use an unusual default value to help determine whether the parameter was actually specified, based on whether the unusual default value got overridden by the caller. That may have been a workaround for the lack of any other way to determine if a parameter was actually passed, but it's counter-intuitive, and was known to be triggering bugs when functions were called multiple times, with the initial value of such a parameter changing based on the caller even though coded as OUTPUTONLY.)

At this point, I think we are reasonably convinced that the universe of programs counting on the misguided behavior is small enough that it makes more sense to just clean it up to use the new .ARG_PASSED() function instead. And in order to find that code, you can compiler 1054, which is available in standalone form below, as well as embedded in the earlier version of the 7.0.1767.0 executable posted above. (Those links have been updated to point to files with -1054 suffixes, and new versions of 7.0.1767.0 with compiler 1055 are below.)

ash70notes.txt
ash-7.0.1767.0-w32-upd.zip
ash-7.0.1767.0-w32c-upd.zip
ash-7.0.1767.0-el7-upd.tz
ash-7.0.1767.0-el7-x86_64-upd.tz
ash-7.0.1767.0-d12-x86_64-upd.tz
compil-7.0.1055-w32.zip
compil-7.0.1054-w32.zip

Note that the version remains 7.0.1767.0; the only obvious difference between these and the ones posted a couple of days ago will be the release date, file date, and compil version (displayed if you execute COMPIL with no arguments).

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37748 07 Jan 25 02:17 AM
Joined: Sep 2003
Posts: 4,178
Steve - Caliq Offline
Member
Offline
Member
Joined: Sep 2003
Posts: 4,178
Just really to double confirm it not effect code like the following:
Code
FUNCTION FN'APPLY'CHANGES'TO'SQL(F'APPLY'COUNT AS F6:OUTPUTONLY,&
                                 F'ERRORS AS F6:OUTPUTONLY,&
                                 F'SKIPPED AS F6:OUTPUTONLY)
..
..
..
..
XPUTARG @F'APPLY'COUNT
XPUTARG @F'ERRORS
XPUTARG @F'SKIPPED
EXITFUNCTION

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37749 07 Jan 25 01:03 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
I was about to casually respond that you had nothing to worry about, but then decided maybe I'd better do another test just to make sure. So I expanded your example a bit to...
Code
map1 COUNT,F
map1 ERRORS,F
map1 SKIPPED,F

    ? "First call, ";COUNT;",";ERRORS;",";SKIPPED;"..."
    call FN'APPLY'CHANGES'TO'SQL(COUNT, ERRORS, SKIPPED)
    ? "Returned values: ";COUNT;",";ERRORS;",";SKIPPED;"..."
    ?
    ? "Second call, ";COUNT;",";ERRORS;",";SKIPPED;"..."
    call FN'APPLY'CHANGES'TO'SQL(COUNT, ERRORS, SKIPPED)
    ? "Returned values: ";COUNT;",";ERRORS;",";SKIPPED;"..."
    ?
    ? "Third call (named params), F'APPLY'COUNT=";COUNT;",F'ERRORS=";ERRORS
    call FN'APPLY'CHANGES'TO'SQL(F'APPLY'COUNT=COUNT, F'ERRORS=ERRORS)
    ? "Returned values: ";COUNT;",";ERRORS;",";SKIPPED;"..."
    ?
    ? "Fourth call (named params), F'APPLY'COUNT=";COUNT;",F'ERRORS=";ERRORS;",F'SKIPPED=";SKIPPED;"..."
    call FN'APPLY'CHANGES'TO'SQL(F'APPLY'COUNT=COUNT, F'ERRORS=ERRORS, F'SKIPPED=SKIPPED)
    ? "Returned values: ";COUNT;",";ERRORS;",";SKIPPED;"..."
    end

FUNCTION FN'APPLY'CHANGES'TO'SQL(F'APPLY'COUNT AS F6:OUTPUTONLY,&
                                 F'ERRORS AS F6:OUTPUTONLY,&
                                 F'SKIPPED AS F6:OUTPUTONLY)
                                 
    ? tab(5);ABC_CURRENT_ROUTINE$;"(";F'APPLY'COUNT;",";F'ERRORS;",";F'SKIPPED;")"
    ? tab(5);"(Adding 1,2, and 3 respectively...)"
    F'APPLY'COUNT += 1
    F'ERRORS += 2
    F'SKIPPED += 3
    XPUTARG @F'APPLY'COUNT
    XPUTARG @F'ERRORS
    XPUTARG @F'SKIPPED
    
EXITFUNCTION

And was promptly greeted with the following barrage of compiler errors...
Quote
?Illegal nesting (missing end to FN'APPLY'CHANGES'TO'SQL?) (37) - FUNCTION FN'AP
PLY'CHANGES'TO'SQL(F'APPLY'COUNT AS F6:OUTPUTONLY,
F'ERRORS AS F6:OUTPUTONLY, F'SKIPPED AS F6:
OUTPUTONLY)
?Unmapped variable: (39) - ? tab(5);"FN'APPLY'CHANGES'TO'SQL";"(";F'APPLY'COUNT;
",";F'ERRORS;",";F'SKIPPED;")" << F'APPLY'COUNT >>
?Unmapped variable: (42) - F'ERRORS += 2 << F'ERRORS >>
?Unmapped variable: (43) - F'SKIPPED += 3 << F'SKIPPED >>
Phase 2 - Adjust object file and process errors
Undefined function or procedure - FN'APPLY'CHANGES'TO'SQL
Undefined function or procedure - FN'APPLY'CHANGES'TO'SQL
Undefined function or procedure - FN'APPLY'CHANGES'TO'SQL
Undefined function or procedure - FN'APPLY'CHANGES'TO'SQL

After starting down a rabbit hole trying to figure out what I'd broken, I decided to actually read the message ("missing end to FN'..."), upon which I realized you'd tricked me by replacing ENDFUNCTION with EXITFUNCTION!
Once that was fixed, it all acts as it should...
Quote
.RUN TSTOUTONLY
First call, 0 , 0 , 0 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 0 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 2 , 3 ...

Second call, 1 , 2 , 3 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 0 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 2 , 3 ...

Third call (named params), F'APPLY'COUNT= 1 ,F'ERRORS= 2
FN'APPLY'CHANGES'TO'SQL( 0 , 0 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 2 , 3 ...

Fourth call (named params), F'APPLY'COUNT= 1 ,F'ERRORS= 2 ,F'SKIPPED= 3 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 0 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 2 , 3 ...

Explanation:

1) The issue here only affected OUTPUTONLY parameters with default values, which you function didn't have. In earlier versions of the compiler, adding the default value was effectively causing the OUTPUTONLY to be ignored. That allowed clever programmers to detect whether a parameter had actually been passed by setting the default value to something that would never be passed. But the downside was that default values could be overridden by the caller, which led to functions acting differently on subsequent calls due to the default values not being respected. So the reason for the multiple calls in the example above was to verify that the function was essentially idempotent.

2) To illustrate the problem, I inserted a default value for the last two parameters...
Code
FUNCTION FN'APPLY'CHANGES'TO'SQL(F'APPLY'COUNT AS F6:OUTPUTONLY,&
                                 F'ERRORS=0 AS F6:OUTPUTONLY,&
                                 F'SKIPPED=0 AS F6:OUTPUTONLY)

I think everyone would agree that adding a default value of 0 shouldn't change the behavior, since that's the default anyway. But prior to this most recent series of compiler updates, it did. Here's what the program acted like in 1756.12 for example...
Quote

.run tstoutonly
First call, 0 , 0 , 0 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 0 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 2 , 3 ...

Second call, 1 , 2 , 3 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 2 , 3 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 4 , 6 ...

Third call (named params), F'APPLY'COUNT= 1 ,F'ERRORS= 4
FN'APPLY'CHANGES'TO'SQL( 0 , 4 , 0 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 6 , 6 ...

Fourth call (named params), F'APPLY'COUNT= 1 ,F'ERRORS= 6 ,F'SKIPPED= 6 ...
FN'APPLY'CHANGES'TO'SQL( 0 , 6 , 6 )
(Adding 1,2, and 3 respectively...)
Returned values: 1 , 8 , 9 ...

Note that the first parameter was unaffected because it didn't have default value. But the addition of the default value for the other two caused them to accept the values passed to them by the caller. So any such function was potentially at risk of misbehaving on subsequent calls, unless the function explicitly initialized the parameters within the function body.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37750 07 Jan 25 01:52 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Jack, FYI Windows Defender is triggering a false positive on the ash-7.0.1767.0-w32-upd.zip download.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37751 07 Jan 25 02:10 PM
Joined: Sep 2003
Posts: 4,178
Steve - Caliq Offline
Member
Offline
Member
Joined: Sep 2003
Posts: 4,178
Thanks Jack for the “nothing to worry about” unless certain code is copy / pasted in haste with EXITFUNCTION (ops sorry)

But great examples and explained it perfectly! Thankyou.

I must admit I do usually explicitly initialized the OUTPUTONLY variables to some default soon after the start of the function.

Last edited by Steve - Caliq; 07 Jan 25 02:13 PM.
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37752 07 Jan 25 02:16 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Stephen - are there different versions/databases for Windows Defender? I don't get any complaints downloading it on either of my W10 or W11 machines. I'm not sure this will be any different, but I've uploaded it as a bzip2 file in case the compression somehow is responsible ...

ash-7.0.1767.0-w32-upd.bzip2

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37753 07 Jan 25 02:27 PM
Joined: Aug 2016
Posts: 403
J
John Andreasen Offline OP
Member
OP Offline
Member
J
Joined: Aug 2016
Posts: 403
I am not getting any Windows Defender warnings either.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37755 07 Jan 25 03:13 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
The zip file doesn't get quarantined anymore. May have been due to me restoring from quarantine.

I'm seeing a bind error.

Code
Unable to bind dynstruct to defstruct in line 805 (at location counter &h1ACA15) of OE01.RUN


Code
This is Debian 12 
.ver
              -- A-Shell 7.0.1767.0/64 Up and Running --
.compil/v
A-Shell Compiler Version 7.0(1055)
Syntax: COMPIL <file>{/switches}  (/? for help)
.


I just compiled this program with this version to test. I'm not sure you want me to send the OE01.LSX. That's the largest program on our system.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37757 07 Jan 25 03:38 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
I have an older copy of that program here, and it does generate the same RUN hash on both Debian 12 and Windows, but I can't actually run it so can't easily test this error.

Does the error happen when compiling/running in -el7?

Do the VERSYS stats change when compiling with the new version compared to the old?

I guess you should send me the LSX. I can adjust it to jump directly to the offending routine, which is probably the fastest way to get to the bottom of it.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37758 07 Jan 25 03:57 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
With edit 1055 EL7 and Debian 12 have the same hash and versys. Debian 12 results in unable to bind or segfaults; where EL7 runs.

I've attached the LSX.

Attached Files
oe01.7z.gpg (402.42 KB, 8 downloads)
SHA1: c1097965440d5374fa341c65fede9175f57fb09d

Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37760 07 Jan 25 04:56 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
The plot thickens -- although the LSX appears to compile, the output RUN is only 1 block long. That problem appears to go way back though - at least a year. That suggests that something about the LSX format has gotten messed with, since older LSX files do compile. Unless you have a simple example of embedded defstructs that fails, I may need to go off on this detour first to figure out what is going on with the LSX.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37761 07 Jan 25 05:09 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
I don't have any simple examples. Sorry.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37762 07 Jan 25 05:26 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
It looks like there's an unrelated issue in the LSX generator that has appeared in a recent version. The symptom is a function that has been shaken out but somehow appears in the LSX an endfunction, like this example...
Code
000357  FUNCTION fn'ashell_test'if'ate'at'least'given'version(test'ate'ver$ as s14) as f6
000357      !{shaken out by /px}
000357  		++IF CONF_COOP_SYSTEM <> 1 AND CONF_CHEMSTATION_SYSTEM <> 1

000357  		++ENDIF

000357  ++ENDIF

If you have an older version and can re-generate your OE01.LSX, I can maybe address both issues in one update. Otherwise I'll first fix the the LSX issue and then we can return the structure binding issue.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37763 07 Jan 25 06:25 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Never mind, here's an update that fixes the LSX generation bug. (It was a side effect of edit 1050 which involved eliminating error messages related to function bodies when the function header had an error.

ash70notes.txt
ash-7.0.1767.1-w32-upd.zip
ash-7.0.1767.1-w32c-upd.zip
ash-7.0.1767.1-d12-x86_64-upd.tz

Use one of those to regenerate the OE01.LSX and send it to me again. Once I get the defstruct issue resolved, I'll post a more complete set of updates.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37764 08 Jan 25 06:25 AM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Here's the LSX compiled with 7.0.1767.1 (1056)

Attached Files
oe01.7z.gpg (1.26 MB, 7 downloads)
SHA1: 34a216096b458dbcdbf1688a0b7cefe1dffc5c57

Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37765 08 Jan 25 11:13 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Ok, I can now compile the LSX and get the same hash on both Windows and Debian 12. The location 1aca15 where the error was reported is actually just the point where the error trap was triggered, which in this case is a call to an outer function...
Code
1aca15  	CALL fn'order'entry_trx_set_ship'quantity(oe'header'rec=oe'header'rec, oe'trx'rec=oe'trx'rec, lockit=0, leave'locked=1)

Since untrapped errors within functions percolate up the stack to the caller, the actual error is somewhere nested below that. It's exact location can be see in the ashlog.log file. I'll need those details to see if I can modify the program to go there directly, bypassing all of the file dependencies which are otherwise getting in the way of running it here.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37766 08 Jan 25 12:40 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Here's the ashlog

Code
08-Jan-25 13:36:01 [p263434-1]<OEMENU:35157> Exec(CHAIN): /var/data/kkvet/ashell/vm/miame/dsk40/160001/oe01.run
08-Jan-25 13:36:01 [p263434-1]<OE01:1b8198> Exec(AMOS): DO TSKAAA.CMD
08-Jan-25 13:36:01 [p267550-0]<:0> ----------------
08-Jan-25 13:36:01 [p267550-0]<:0> A-Shell 7.0.1767.1/64 launched on pts/1:267550 by ashvm_kkvet
08-Jan-25 13:36:01 [p267550-2]<:0> In: Nodes=1/2/85 [L], ip=192.168.17.1 0:0:0:0:0:0, (ashvm_kkvet) inodes:  si=0,sm=1,rsv=0(0,0,0), j=3e804b2,q=3e80051, rc=0
08-Jan-25 13:36:01 [p267550-2]<:0> Exec(CMDLIN): DO TSKAAA.CMD
08-Jan-25 13:36:01 [p267550-2]<DO:135a> Exec(CHAIN): /var/data/kkvet/ashell/vm/miame/dsk0/001004/flit.lit
08-Jan-25 13:36:01 [p267550-2]<DO:135a> Exec(CMDLIN): DSK0:FLIT.LIT[1,4]
08-Jan-25 13:36:01 [p267550-2]<FLIT:0> Exec(CMDLIN): ISMBLD TSKAAA
08-Jan-25 13:36:01 [p267550-2]<ISMBLD:217b> Out: Nodes Remaining = 1P/1L, 15 reads, 31098 writes, 0 kbd bytes
08-Jan-25 13:36:01 [p267550-2]<ISMBLD:217b> Final exit
08-Jan-25 13:36:29 [p263434-1]<OE01:aa6b7> *** OUT OF MEMORY: UNABLE TO ALLOCATE -306195712 BYTES!!! ***
08-Jan-25 13:36:29 [p263434-1]<OE01:aa6b7> Trapped Basic Error #73 (Unable to bind dynstruct to defstruct) at location counter &hAA6B7, last proc/func: fn'order_trx_set_unit'cost
08-Jan-25 13:36:29 [p263434-1]<OE01:aa6b7> Call stack trace, from program OE01 :
			From line #3041, loc 18e39c, Gosub @18e73d
			From line #3041, loc 18fa13, Gosub @19f032
			From line #3041, loc 19f077, Gosub @19f0dc
			From line #3041, loc 19f0e4, Gosub @1abe35
			From line #805, loc 1ac183, Gosub @1ac91f
			From line #805, loc 1aca15, Call Proc() @147b27
			From loc 147bb1, Call Proc() @14824e
			From loc 148295, Func() @aa686


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37767 08 Jan 25 01:58 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Just a status update - I've been able to reproduce the problem by inserting a call to the function where the automatic binding is taking place. So it seems I have everything I need from you. There's a lot going on here today though, plus it's time for lunch, so I may not get it resolved before later today/tonight.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37768 09 Jan 25 12:03 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Another status update - I think I have it nailed down, but need to do more testing. (Obviously there wasn't enough the first time around!) Should be able to release some time Thursday...

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37769 09 Jan 25 12:50 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Ok, give these a try...

ash-7.0.1767.2-w32-upd.zip
ash-7.0.1767.2-d12-x86_64-upd.tz

If that works, I'll generate the other versions.

Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37770 09 Jan 25 04:20 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
I'm not going to have time to do this until tomorrow morning.


Stephen Funkhouser
Diversified Data Solutions
Re: A-Shell Linux DYNSTRUCT related issue [Re: John Andreasen] #37775 14 Jan 25 04:20 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content
Member
Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
After recompiling OE01 this version works. Going to compile all the programs and let you know.


Stephen Funkhouser
Diversified Data Solutions
Page 1 of 2 1 2

Moderated by  Jack McGregor, Ty Griffin 

Powered by UBB.threads™ PHP Forum Software 7.7.3