]> Kevux Git Server - fll/log
fll
11 months agoUpdate: Further re-design f_socket_connect().
Kevin Day [Sat, 9 Dec 2023 03:43:18 +0000 (21:43 -0600)]
Update: Further re-design f_socket_connect().

This is a follow up to commit 596997daebd53246b205d0221c5c616bfafb7d23.

Make sure to set the appropriate sizeof for the socket length.

Update the documentation comments to communicate that the socket length is updated on the function calls.

Make f_socket_connect()'s socket parameter a pointer.
Set the socket length in f_socket_connect() to the appropriate size.

Add documentation comments regarding the pointers that must not be NULL in f_socket.

Update the related unit tests.

11 months agoUpdate: Re-design f_socket to better support handling of different struct sockaddr...
Kevin Day [Fri, 8 Dec 2023 04:46:53 +0000 (22:46 -0600)]
Update: Re-design f_socket to better support handling of different struct sockaddr types.

The networking types are already in use, such as address family (AF_*) and protocol family (PF_*).
The known and supported socket address structures (struct sockaddr) do not directly relate to either.
Create a new enumeration that directly maps to these socket address structures (struct sockaddr), called an address form.
A 16-bit integer is hopefully more than is ever needed for this.

Rewrite f_socket_bind() and f_socket_connect() to use the socket.form enumeration.
The custom *_inet4(), *_inet6(), and *_local() functions are removed.

Add a generic, or fallback aka failsafe, type for handling the most basic socket address tructure (struct sockaddr).

11 months agoUpdate: The fss-000e (Payload) specification should allow for the "payload" Section...
Kevin Day [Fri, 8 Dec 2023 02:28:02 +0000 (20:28 -0600)]
Update: The fss-000e (Payload) specification should allow for the "payload" Section to be optional.

In cases where packets that are being sent only need to send the "header", then it makes sense to not have a "payload" Section.
This should help reduce network traffic by avoiding the extra "payload:\n" characters when the payload Section is to be ignored.

11 months agoUpdate: Add missing documentation on status code from f_socket_connect().
Kevin Day [Thu, 7 Dec 2023 03:06:51 +0000 (21:06 -0600)]
Update: Add missing documentation on status code from f_socket_connect().

11 months agoUpdate: The unit tests where socket.id needs to be set properly.
Kevin Day [Thu, 7 Dec 2023 01:55:50 +0000 (19:55 -0600)]
Update: The unit tests where socket.id needs to be set properly.

The commit a55af231dacdf355323d42ba6e06f0188eb7d387 the socket.id bug in f_socket_connect() but failed to update the unit test.

11 months agoBugfix: Update unit tests and fix problems exposed after fixing unit tests for f_netw...
Kevin Day [Tue, 5 Dec 2023 06:03:14 +0000 (00:03 -0600)]
Bugfix: Update unit tests and fix problems exposed after fixing unit tests for f_network_is_ip_address().

This is a follow up to these commits:
0e69871e03990990e0ebdf1b496ece67c40f4b5e
309f2625e983ef164c52543b492365fe92eed6d5

Add additional tests.
Fix bad test data, such as where the string lengths are incorrect.
Perform tests when "where" parameter both is NULL or is a valid pointer.
The tests now handle validating the "where" parameter, when specified.

Add additional comments to better communicate the logic in f_network_is_ip_address().
Properly handle the "where" parameter assignment.

11 months agoBugfix: Unit test should reset size after free.
Kevin Day [Tue, 5 Dec 2023 06:01:41 +0000 (00:01 -0600)]
Bugfix: Unit test should reset size after free.

The size must be reset due to the manual free otherwise a memory error occurs later on.

11 months agoUpdate: Unit tests for f_network().
Kevin Day [Mon, 4 Dec 2023 04:13:06 +0000 (22:13 -0600)]
Update: Unit tests for f_network().

The commit 309f2625e983ef164c52543b492365fe92eed6d5 did not update the unit tests.
The tests currently do not pass due to a regression that will be addressed in a follow up commit.

The referenced commit was rushed so that I could get to the f_string_range_t and related migration.
I didn't bother to review the code or run the unit tests.
I will now have to follow up with a more extensive review and fix any problems.
The unit tests need to also be updated to handle all of the new behavior of the changed function.

11 months agoRefactor: The f_string_range_t to f_range_t and f_string_range_double_t to f_range_do...
Kevin Day [Mon, 4 Dec 2023 03:43:06 +0000 (21:43 -0600)]
Refactor: The f_string_range_t to f_range_t and f_string_range_double_t to f_range_double_t.

11 months agoUpdate: The f_network_is_ip_address() to use f_string_range_double_t (soon to be...
Kevin Day [Mon, 4 Dec 2023 01:50:55 +0000 (19:50 -0600)]
Update: The f_network_is_ip_address() to use f_string_range_double_t (soon to be f_range_double_t).

This allows for getting both the address and port range positions.
The POSIX/libc functions do not support the bracket notation in an IPV6 address.
The string detected by this must then have the brackets filtered out.
This new structure allows for saving the range.

I did a quick run-through write-up of the logic for these changes but I have not spent any time reviewing or testing the logic.
Hopefully there are not logic bugs or mistakes.

11 months agoFeature: Add f_string_range_double_t, updating build settings and unit tests appropri...
Kevin Day [Mon, 4 Dec 2023 01:43:11 +0000 (19:43 -0600)]
Feature: Add f_string_range_double_t, updating build settings and unit tests appropriately.

I need a string range structure that has two ranges for some given string for the network related code.

The unit tests are updated or added as appropriate.
Any bugs discovered in the related unit tests are fixed.

The build data is rebuilt.

I originally wrote f_string_range_t to be specific to strings.
I now think that this needs to be conceptually more generalized.
The purpose of such a generalization is to simplify the code logic and design.
Renaming f_string_range_t to f_range_t and now renaming f_string_range_double_t into f_range_double_t is the intended change.
This would then be moved out of the f_string project and into the f_type project.
This is too much to do in the scope of this commit.

Instead, the f_string_range_double_t is being added under f_string_range_double_t.
I will then follow up this commit with a refactor of the f_string_range_t and f_string_range_double_t.

11 months agoBugfix: f_network_from_ip_string() and f_network_to_ip_string() design problems.
Kevin Day [Thu, 30 Nov 2023 03:01:02 +0000 (21:01 -0600)]
Bugfix: f_network_from_ip_string() and f_network_to_ip_string() design problems.

Change the inet_pton() and inet_ntop() function calls to use the explicit .v4 and .v6 union members.
Being explicit is much safer.

The inet_pton() function also returns zero without the errno set when the address is invalid.
Handle this case, returning F_address_not (with error bit) when zero is returned by inet_pton().

The unit tests for these functions are incorrect and are not all called (which is why their incorrectness was not previously discovered).
Make sure to use h_errno where appropriate.
Make sure the mock function for inet_pton() allows for returning zero or non-zero.
Make sure the family type is set so that the expected return codes are returned.
Make sure the ip string is set so that the expected return codes are returned.
Handle the newly added F_address_not case.

Add the missing unit test function calls:
- test__f_network_from_ip_address__fails
- test__f_network_from_ip_name__fails
- test__f_network_from_ip_string__fails
- test__f_network_to_ip_string__fails

This could use more review and testing.
Such extra review will be performed while I continue to write TacocaT.

11 months agoCleanup: Use upper case "ID" rather than lower case "id".
Kevin Day [Thu, 30 Nov 2023 02:59:13 +0000 (20:59 -0600)]
Cleanup: Use upper case "ID" rather than lower case "id".

11 months agoBugfix: f_socket_connect() should require non-negative socket.id.
Kevin Day [Thu, 30 Nov 2023 02:57:43 +0000 (20:57 -0600)]
Bugfix: f_socket_connect() should require non-negative socket.id.

I seem to have this one backwards.
The socket.id must be something other than -1.
If the socket.id is -1, then just return F_file_descriptor without error bit to designate that no descriptor is available to connect with.

12 months agoUpdate: Specifications for Payload and Simple Packet.
Kevin Day [Tue, 14 Nov 2023 23:56:43 +0000 (17:56 -0600)]
Update: Specifications for Payload and Simple Packet.

Add "type" as a recommended Object in the header section for the Payload.

Change the size units being used in Simple Packet.
The numbers used in some areas are completely wrong 2^4 is not 32-bits.
Instead use the word "bytes" or "bits" and update the units.
The Payload Block Structure uses "bytes" rather than bits as that is the general focus of that section.
All others use "bits".

12 months agoProgress: Continue adding FSS Payload processing code.
Kevin Day [Sat, 11 Nov 2023 05:35:42 +0000 (23:35 -0600)]
Progress: Continue adding FSS Payload processing code.

Add the common, recommended, payload Object strings.

12 months agoProgress: Continue adding FSS Payload processing code.
Kevin Day [Wed, 8 Nov 2023 03:08:36 +0000 (21:08 -0600)]
Progress: Continue adding FSS Payload processing code.

12 months agoCleanup: Remove spurious space.
Kevin Day [Wed, 8 Nov 2023 02:44:44 +0000 (20:44 -0600)]
Cleanup: Remove spurious space.

12 months agoUpdate: Fall back to MAXNAMLEN if NAME_MAX is not available.
Kevin Day [Wed, 8 Nov 2023 02:32:34 +0000 (20:32 -0600)]
Update: Fall back to MAXNAMLEN if NAME_MAX is not available.

On systems like BSD, MAXNAMLEN is available in place of NAME_MAX.

12 months agoProgress: Resume working on custom payload functions.
Kevin Day [Wed, 1 Nov 2023 02:58:58 +0000 (21:58 -0500)]
Progress: Resume working on custom payload functions.

I'm getting more back into things and this is a small step towards pickup up where I left off.
There are several todos that I will consider and either implement or not.

This performs the work that I mentioned in the previous commit in regards to redesigning the approach in fl_fss_payload_header_write() (now called fl_fss_payload_header_map()).

13 months agoProgress: Continue adding FSS Payload processing code.
Kevin Day [Thu, 19 Oct 2023 04:26:42 +0000 (23:26 -0500)]
Progress: Continue adding FSS Payload processing code.

I started doing some re-designing to improve the approach and prepare for signatures/checksums.

I realized somewhere during that process that I wanted to eventually control or even randomize the header order for integrity, organization, or security reasons.
The current approach makes that impractical.

I decided to save the current state so that I can then pivot to a better approach that will accommodate the above needs.
Appropriate todo notes are added to this end.

A lot of the existing payload code will be re-designed, again, as a result of this.

13 months agoProgress: Continue adding FSS Payload processing code.
Kevin Day [Tue, 17 Oct 2023 03:12:41 +0000 (22:12 -0500)]
Progress: Continue adding FSS Payload processing code.

I decided to use two caches.
One for the main cache.
The other for a smaller, multi-purpose cache.

The second cache should be smaller and so re-allocations should be cheaper.
Use re-allocations on this as much as possible.

There are some code changes that I was indecisive around and jumped around on implementation.
I think I cleaned that all up but I may have missed something.

13 months agoProgress: Begin adding FSS Payload processing code.
Kevin Day [Thu, 12 Oct 2023 04:12:03 +0000 (23:12 -0500)]
Progress: Begin adding FSS Payload processing code.

I haven't gotten much time lately but I wanted to at least move this forward even if only a little.

This only performs some basic or minor progress regarding the f_abstruse project.

13 months agoProgress: Begin adding FSS Payload processing code.
Kevin Day [Thu, 5 Oct 2023 04:19:44 +0000 (23:19 -0500)]
Progress: Begin adding FSS Payload processing code.

This will use the f_abstruse project.
This is very incomplete and is mostly drafted out.

Update the Featureless Make stand alone build with the latest changes.

Apply the related cleanups from 4ced1b0ba41334ce94d0a9b511b363a6031da136 (Cleanup: Have enumeration types support "none" and have the "// enum" comment at the end.).

Add some documentation comments.

13 months agoCleanup: Have enumeration types support "none" and have the "// enum" comment at...
Kevin Day [Thu, 5 Oct 2023 03:12:45 +0000 (22:12 -0500)]
Cleanup: Have enumeration types support "none" and have the "// enum" comment at the end.

This makes the code more consistent with the intended style practices.

13 months agoUpdate: Simplify the f_abstruse types a little.
Kevin Day [Thu, 5 Oct 2023 03:11:38 +0000 (22:11 -0500)]
Update: Simplify the f_abstruse types a little.

Being a union, the single valued integer types provide very little gain and introduce a cost in complexity.
Remove the integer types that overlap and just stick with the f_number_signed_t and f_number_unsigned_t for single value number types.
Multiple valued number types remain because there is potential for design differences due to the memory allocation and size differences.

The f_char_t type is removed.
Just stick with f_string_t.

13 months agoUpdate: Specification FSS-000E (Payload), add "signature" Object section.
Kevin Day [Thu, 5 Oct 2023 03:05:18 +0000 (22:05 -0500)]
Update: Specification FSS-000E (Payload), add "signature" Object section.

Provide an optional "signature" Object and associated Content rules to the specification.
This better separates defining how the "header" and "payload" can be signed or have checksums applied.
The actual rules are left rather vague and flexible for implementation specific decisions.

A suggested strategy for using the "signature" is provided within the example.

13 months agoFeature: Add f_abstruse project.
Kevin Day [Wed, 4 Oct 2023 02:00:19 +0000 (21:00 -0500)]
Feature: Add f_abstruse project.

This is the initial design and may be subject to significant change as I begin to use it more.

The idea here is to provide a type that can act as a catch all for any sort of header of any specific type.
I use standard types and provide void pointer types for everything else.

I have some concerns about supporting void pointer types due to the special case of how to handle this allocation actions.
I have decided to withhold the "append" and similar standard functions for now until I get a better grasp on how this should be used.

A union is used to use the same memory space at the cost of the largest size.

A dynamic string is likely the most common case.

The resize and similar functions provide warnings that the caller needs to be careful about allocation and de-allocation.
This poses extra security concerns for when callers of these functions do not properly or safely handle the data.

I intend to use this in the FSS Simple Packet processing code, such as writing (building) the Simple Packet string.

14 months agoUpdate: Restructure f_type files and add missing f_number_signed_t.
Kevin Day [Tue, 19 Sep 2023 22:20:42 +0000 (17:20 -0500)]
Update: Restructure f_type files and add missing f_number_signed_t.

Break apart the f_type headers into multiple header files by major type groups.
This should make navigating the files a little easier.
Some of the header files are order sensitive.

The f_number_signed_t is now implemented.
Added appropriate unit tests.

I manually added the disable defines in the fake stand alone configuration file.

14 months agoUpdate: Minor clean ups and have f_socket_connect() return F_file_descriptor.
Kevin Day [Thu, 14 Sep 2023 04:28:27 +0000 (23:28 -0500)]
Update: Minor clean ups and have f_socket_connect() return F_file_descriptor.

The f_socket_connect() should return F_file_descriptor when socket.id is in use.
Add appropriate unit tests.

14 months agoCleanup: Add missing "e" in the "the" in comment.
Kevin Day [Thu, 7 Sep 2023 02:31:18 +0000 (21:31 -0500)]
Cleanup: Add missing "e" in the "the" in comment.

14 months agoBugfix: Problems exposed by clang-13.
Kevin Day [Wed, 6 Sep 2023 05:48:09 +0000 (00:48 -0500)]
Bugfix: Problems exposed by clang-13.

The Vedic Extensions Unicode checks are out of order.

Remove unused "last" variable from private_fl_utf_file_write_until().

14 months agoCleanup: Fix unit test documentation comment for f_directory_remove_custom().
Kevin Day [Wed, 6 Sep 2023 05:09:17 +0000 (00:09 -0500)]
Cleanup: Fix unit test documentation comment for f_directory_remove_custom().

14 months agoUpdate: Add check in f_socket_disconnect() to explicitly check socket file descriptor.
Kevin Day [Wed, 6 Sep 2023 05:09:04 +0000 (00:09 -0500)]
Update: Add check in f_socket_disconnect() to explicitly check socket file descriptor.

Avoid depending on libc calls and instead explicitly check the socket file descriptor.
Return F_file_descriptor_not when -1.
Add unit test for this.

14 months agoUpdate: Replace f_fss_simple_packet_identify() with f_fss_simple_packet_extract(...
Kevin Day [Mon, 4 Sep 2023 20:04:37 +0000 (15:04 -0500)]
Update: Replace f_fss_simple_packet_identify() with f_fss_simple_packet_extract() and f_fss_simple_packet_extract_range().

The implementation of f_fss_simple_packet_identify() appears to be some sort of hybrid between actual code and brainstorming.
This appears to be by accident and the resulting logic of the function is nonsense.

Fix the logic in f_fss_simple_packet_identify().
I also see no reason to perform an identify call.
The FSS Packet design is so simple that I could just add 1, 4, or 5 to determine any of the parts.
Therefore, instead implement f_fss_simple_packet_extract() and f_fss_simple_packet_extract_range() to extract the Control bits and the Size integer.
The Payload part is not extracted but for the f_fss_simple_packet_extract_range(), the range for the Payload is determined.
This allows for the caller to determine how they want to manage the memory allocation.

This is a case where object-oriented would shine had I used C++ or some other object-oriented language.
I don't have this option available and so I am going to only have f_fss_simple_packet_t and f_fss_simple_packet_range_t with their respective f_fss_simple_packet_extract() and f_fss_simple_packet_extract_range() functions.

Unit tests are now provided for these two new functions.

14 months agoBugfix: Mistakes in the FSS-000f Simple Packet specification.
Kevin Day [Sat, 2 Sep 2023 14:30:00 +0000 (09:30 -0500)]
Bugfix: Mistakes in the FSS-000f Simple Packet specification.

The "Size Block Structure" section has the wrong example.
Fix the example to display the Size Block structure, which is a 32-bit digit.

Change the "Control Block Structure" section to use "size" annotations rather than bit examples.

14 months agoUpdate: Fix unit tests after adding additional sanity checks.
Kevin Day [Fri, 1 Sep 2023 04:09:29 +0000 (23:09 -0500)]
Update: Fix unit tests after adding additional sanity checks.

The commit 3dee02180d1ab33471e57b17c1485532fee1c597 introduced additional sanity checks.

Several unit checks did as little as necessary to perform the tests when it comes to mocking.
The additional sanity checks impose additional restrictions.

14 months agoUpdate: Add missing too large and too small status code handling for F_payload too...
Kevin Day [Fri, 1 Sep 2023 03:39:04 +0000 (22:39 -0500)]
Update: Add missing too large and too small status code handling for F_payload too large and too small.

I missed these in the previous commit 2b61b24b69bb7bf7dec41759dfb4f9cb4b188ffd.

14 months agoUpdate: Take advantage of lucky convenience where F_okay could be bumped from 197...
Kevin Day [Thu, 31 Aug 2023 04:19:28 +0000 (23:19 -0500)]
Update: Take advantage of lucky convenience where F_okay could be bumped from 197 to 200 thereby matching HTTP 200 status code.

I recently noticed that the F_okay is very close to being a 200 code after swapping F_none with F_okay.
This was never planned but it is incredibly convenient.

HTTP Status 200 code now matches FLL Status Code 200.
What luck!

14 months agoUpdate: Add too large and too small status codes for F_payload and F_packet.
Kevin Day [Thu, 31 Aug 2023 03:55:47 +0000 (22:55 -0500)]
Update: Add too large and too small status codes for F_payload and F_packet.

The packet and payload are very likely to have too large status codes.
Add the too small status codes for consistency.

14 months agoUpdate: Relocate some of the more common or expected to be common format strings...
Kevin Day [Thu, 31 Aug 2023 03:21:50 +0000 (22:21 -0500)]
Update: Relocate some of the more common or expected to be common format strings to global statics.

This is a minor resource optimization.
There will hopefully be more optimizations in the future where several of the commonly used strings (within individual projects) are moved into a single location for that given project.

14 months agoCleanup: Add comment to help clarify the size * 2 logic.
Kevin Day [Wed, 30 Aug 2023 01:54:32 +0000 (20:54 -0500)]
Cleanup: Add comment to help clarify the size * 2 logic.

This will comment should help future proof accidental incorrect changes to this value.

14 months agoSecurity: Add additional sanity checks before freeing in memory array and fix structu...
Kevin Day [Wed, 30 Aug 2023 00:11:27 +0000 (19:11 -0500)]
Security: Add additional sanity checks before freeing in memory array and fix structure problem in dynamicss callback.

Add additional checks to ensure a free() does not get called on a NULL pointer.

The dynamics delete and destroy callbacks in particular have the f_memory_array_resize() inside the loop rather than outside the loop.

14 months agoCleanup: Remove unused file that got overlooked when wrapping up the recent memory...
Kevin Day [Mon, 28 Aug 2023 04:20:14 +0000 (23:20 -0500)]
Cleanup: Remove unused file that got overlooked when wrapping up the recent memory logic re-design.

14 months agoSecurity: Invalid allocation size for fll_execute_arguments_add_parameter_set().
Kevin Day [Mon, 28 Aug 2023 03:57:45 +0000 (22:57 -0500)]
Security: Invalid allocation size for fll_execute_arguments_add_parameter_set().

The size should be size * 2 because of the parameter and value are added.

14 months agoFeature: Add -U/--under parameter to Featureless Make.
Kevin Day [Mon, 28 Aug 2023 02:59:03 +0000 (21:59 -0500)]
Feature: Add -U/--under parameter to Featureless Make.

I discovered that the data build directory customization is incomplete while working on the Kevux Tools TacocaT program.

A new parameter to specify a sub-directory within the data directory, called "under", represented by -U and --under is now added.
This provides the ability to change the "build" part of the "data/build" directory.
This can even be an empty string.

The fakefile documentation and specification is updated because this parameter must now be reserved and exposed to IKI expansion.
I have not yet done a thorough test of this feature and I will hopefully do this before the next release.
I have performed a basic test and I can now compile the TacocaT program easily using this parameter.

14 months agoUpdate: Fix some overlooked unit tests following wrap up of re-designing the memory...
Kevin Day [Sun, 27 Aug 2023 22:11:39 +0000 (17:11 -0500)]
Update: Fix some overlooked unit tests following wrap up of re-designing the memory logic.

I forgot to run all tests and overlooked updating these.

14 months agoUpdate: Wrap up re-designing the memory logic.
Kevin Day [Sun, 27 Aug 2023 21:52:26 +0000 (16:52 -0500)]
Update: Wrap up re-designing the memory logic.

Update the unit tests and stand alone builds as needed.
Also clear out the stand alone builds that are out of date and require being rebuilt from the ground up.

14 months agoProgress: Continue re-designing of the memory logic, focusing on unit tests for recen...
Kevin Day [Sun, 27 Aug 2023 01:36:18 +0000 (20:36 -0500)]
Progress: Continue re-designing of the memory logic, focusing on unit tests for recent changes to f_string_dynamic_t and similar.

This adds some test files that I did a git add on but forgot to do the git commit with.
Update many of the unit tests and fix any mistakes discovered.

15 months agoProgress: Continue re-designing of the memory logic, focusing on unit tests for recen...
Kevin Day [Wed, 23 Aug 2023 05:49:48 +0000 (00:49 -0500)]
Progress: Continue re-designing of the memory logic, focusing on unit tests for recent changes to f_string_dynamic_t and similar.

15 months agoProgress: Continue re-designing of the memory logic, focusing on f_string_dynamic_t...
Kevin Day [Tue, 22 Aug 2023 04:24:57 +0000 (23:24 -0500)]
Progress: Continue re-designing of the memory logic, focusing on f_string_dynamic_t and similar.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Sat, 19 Aug 2023 04:19:37 +0000 (23:19 -0500)]
Progress: Continue re-designing of the memory logic.

I would note that I am leaving the append() and append_all() for the IKI structures because they are complex.
In the long term I may end up adding back the append() and append_all() functions for each type.
At this time it is more advantageous for me to not have that consistency for easier maintainability while the project is evolving and refactoring.

I still need to look over the string and UTF string memory related functionality.
This will be more delicate and given the size of these two projects will be a bit time consuming.

15 months agoUpdate: Existing F_none and similar uses are now F_okay.
Kevin Day [Fri, 18 Aug 2023 00:21:46 +0000 (19:21 -0500)]
Update: Existing F_none and similar uses are now F_okay.

This is the second part of changing the status codes.

This is a massive regex based change and so there is a lot of potential for mistakes.
Time will tell.

15 months agoUpdate: Use F_okay instead of F_none as the first status code.
Kevin Day [Thu, 17 Aug 2023 23:44:27 +0000 (18:44 -0500)]
Update: Use F_okay instead of F_none as the first status code.

This change is in two parts.
This part is just changing the status codes.
The next part will be changing all code using the status code F_none as the standard return to instead use F_okay.

I believe that F_okay makes more semantic sense than F_none when providing a standard code.
The original idea of F_none is that there are no errors.
I think "okay" is even more accurate.

Furthermore, the F_okay better matches the return code of the HTTP standard "HTTP 200 Okay".

15 months agoUpdate: Simplify disable defines for status codes.
Kevin Day [Thu, 17 Aug 2023 23:24:14 +0000 (18:24 -0500)]
Update: Simplify disable defines for status codes.

I like the idea of having the pre-created disable defines for each group.
The problem is that this is extra maintenance and I do not see significant use for this functionality.
Remove these to make my life slightly easier.

15 months agoProgress: Continue re-designing of the memory logic, mostly getting tests back in...
Kevin Day [Thu, 17 Aug 2023 03:48:37 +0000 (22:48 -0500)]
Progress: Continue re-designing of the memory logic, mostly getting tests back in synchronization.

Get the tests working.
Some of the tests I am not mocking the allocation and performing the real allocation actions.
This allows for the unit test to also test memory if run with valgrind.
I did this after getting much of the work done and so I ended up not consistently doing this on all of the "works" tests.
Generally, the tests for functions with the double 's' have the actual memory allocations.

15 months agoProgress: Continue re-designing of the memory logic also removing *_append() and...
Kevin Day [Sun, 13 Aug 2023 22:11:13 +0000 (17:11 -0500)]
Progress: Continue re-designing of the memory logic also removing *_append() and *_append_all().

In some cases *_append() and *_append_all() functions are removed.
This is a lot to manage at this time so remove it.
At some future point in time I need to implement a good generic append and append all design.
This is likely to use some sort of callback that performs the individual copy calls.

Many of the existing *_append() and *_append_all() are left alone but may eventually be removed.

The dynamic string based ones, however, will remain as an exception case.

The names I originally chose for the callbacks are misleading.
Rename them to be "delete" and "destroy" rather than "resize" and "adjust", respectively.

Half way through changing this I came across the more complex cases for resizing.
These I need callbacks both both array of arrays and arrays of arrays.
I did not finish the process of converting this.

The f_type_array needs more work.
In particular, the arrays of arrays in f_type_array can be moved into a common f_memory function, such as f_memory_arrayss_resize().

The unit tests have not been updated but I did manage to get the unit test for the f_account done.
The stand alone build config.h files are not update to date either.

These changes have shown a significant improvement in the resulting binary size.
The current size is actually just barely smaller than the 0.6.7 equivalent build (when compiled using the same compiler for both).
The changes are not complete and so I anticipate the 0.7.0 branch to be smaller than the 0.6.7 branch as of this change set despite the 0.7.0 development branch having more functionality.

15 months agoCleanup: Remove double "const" and add missing changes that were supposed to be in...
Kevin Day [Sun, 13 Aug 2023 00:46:35 +0000 (19:46 -0500)]
Cleanup: Remove double "const" and add missing changes that were supposed to be in the previous progress commit.

The previous progress commit is 8a9248d98b54f39824a335da036b7671d05bae1f.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Sat, 12 Aug 2023 23:07:33 +0000 (18:07 -0500)]
Progress: Continue re-designing of the memory logic.

15 months agoBugfix: Stop using f_memory_array_append_all() for an array of IKI data.
Kevin Day [Sat, 12 Aug 2023 03:29:35 +0000 (22:29 -0500)]
Bugfix: Stop using f_memory_array_append_all() for an array of IKI data.

There is some logic mistake, structural mistake, design mistake, or an oversight.
Just do not use it for now and instead use a traditional for loop.

I may get rid of f_memory_array_append_all() in the future or I may spend time investigating what my mistake is in this use case.

15 months agoUpdate: Ensure pointers passed to the function are constant.
Kevin Day [Sat, 12 Aug 2023 03:28:09 +0000 (22:28 -0500)]
Update: Ensure pointers passed to the function are constant.

The function should never be allowed to change the pointer itself.
A double pointer is used so that the value of the pointer can be another pointer which can then be changed.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Fri, 11 Aug 2023 03:11:01 +0000 (22:11 -0500)]
Progress: Continue re-designing of the memory logic.

This makes a second pass around f_thread memory and addresses other bugs found.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Thu, 10 Aug 2023 04:33:16 +0000 (23:33 -0500)]
Progress: Continue re-designing of the memory logic.

I did a first pass through the f_thread related memory code.
There could be a second pass through the f_thread, but for now this is good enough.

I spent some time going through the build process and other such code to get unit tests running with the latest progress commits.

Fix mistake in f_file_stream_read() where F_none_eof is returned but F_none should be returned.

Include cleanup commit f6725366474492f1b7baabba7938854f6e6412eb from 0.6 branch.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Tue, 8 Aug 2023 04:33:35 +0000 (23:33 -0500)]
Progress: Continue re-designing of the memory logic.

15 months agoBugfix: Use the settings-mocks for the f_type_array unit tests.
Kevin Day [Tue, 8 Aug 2023 02:40:13 +0000 (21:40 -0500)]
Bugfix: Use the settings-mocks for the f_type_array unit tests.

This is a follow up to the Progress commit 0dda50d25ee1fd477b495451c8e8b55b428a85a3.

After trying to figure out why the tests were failing, I finally discovered that the wrong file is being used.
The settings-mocks needs to be used to pull in the mocked data.

I felt this fix deserved its own distinct commit rather than being part of another Progress commit.

15 months agoCleanup: Add explicit casts in the f_memory memset() calls.
Kevin Day [Tue, 8 Aug 2023 01:21:26 +0000 (20:21 -0500)]
Cleanup: Add explicit casts in the f_memory memset() calls.

The pointer is cast to uint8_t to perform the arithmetic.
The pointer is not cast back but the cast happens in the function call.
Be explicit and designate that the cast back to a void pointer is intentional.

15 months agoSecurity: Add additional checks against the parameters in fll_execute_program().
Kevin Day [Tue, 8 Aug 2023 01:21:06 +0000 (20:21 -0500)]
Security: Add additional checks against the parameters in fll_execute_program().

15 months agoRegression: Incorrect type on memset() in array resulting in invalid read.
Kevin Day [Tue, 8 Aug 2023 01:02:45 +0000 (20:02 -0500)]
Regression: Incorrect type on memset() in array resulting in invalid read.

The particular problematic array is an array of f_string_t and not and array of f_char_t.

This is the opposite of the regression that is fixed in commit 3533e7f840c5d852f98372f2dd9c9066cc53c85e.

15 months agoBugfix: Wrong index is being used for the file in Featureless Make.
Kevin Day [Mon, 7 Aug 2023 16:30:12 +0000 (11:30 -0500)]
Bugfix: Wrong index is being used for the file in Featureless Make.

The values array should be used and not the location of the parameter.

15 months agoProgress: Continue re-designing of the memory logic.
Kevin Day [Sun, 6 Aug 2023 21:44:56 +0000 (16:44 -0500)]
Progress: Continue re-designing of the memory logic.

This wraps up the simple memory append all functions with added unit tests.
I anticipate that I need to do the more complex ones as well.

This adds the adjust and resize callbacks for use in more complex memory functions.
The more complex memory functions for adjust and resize are implemented with unit tests.

The unit tests for the type array callbacks are incomplete because I did not get time to finish writing them.
Those unit tests are written but are incomplete and do not yet work.

15 months agoRegression: Follow up to invalid type used when allocating string, f_string_t should...
Kevin Day [Sun, 6 Aug 2023 02:54:46 +0000 (21:54 -0500)]
Regression: Follow up to invalid type used when allocating string, f_string_t should instead be f_char_t.

I missed the save button on this file and this change did not get committed.

15 months agoProgress: Begin simplifying memory design, starting with f_number_unsigned_t array...
Kevin Day [Sun, 6 Aug 2023 00:43:19 +0000 (19:43 -0500)]
Progress: Begin simplifying memory design, starting with f_number_unsigned_t array structures.

I find that the use of custom per-type functions to simplify the usability of the library.
I also find that this increases the complexity and size of the code base.

I believe that over time this will become more complex and even harder to maintain.
I have decided to start changing the design to go back to simple allocation methods that just require more variables.
This simplifies the code and in theory will make it faster by having fewer function calls on the stack.
This may even reduce the resulting binary size (and I hope it does).

The down side is that the users of the library will once more have longer function call lines.

This commit is the beginning of the redesign process.

I also added the "append" and "append all" methods for f_memory_array calls.

15 months agoRegression: Invalid type used when allocating string, f_string_t should instead be...
Kevin Day [Sun, 6 Aug 2023 00:38:12 +0000 (19:38 -0500)]
Regression: Invalid type used when allocating string, f_string_t should instead be f_char_t.

I noticed odd differences between the 0.6.x and the 0.7.x in terms of memory usage.
I discovered this to be due to a bug where the f_string_t is being used when the type should be instead f_char_t.
This is likely a bug introduced in some past refactor.

15 months agoCleanup: Surround constant variable in a scoped block.
Kevin Day [Sun, 6 Aug 2023 00:36:16 +0000 (19:36 -0500)]
Cleanup: Surround constant variable in a scoped block.

15 months agoProgress: Begin further re-designing of the memory logic.
Kevin Day [Sat, 5 Aug 2023 20:58:49 +0000 (15:58 -0500)]
Progress: Begin further re-designing of the memory logic.

This adds the append and append all functions, respectively.
This adds a paramete check to see if width is 0.

15 months agoUpdate: Add comment in Featureless Make code to designate changes the must be done.
Kevin Day [Sat, 5 Aug 2023 20:57:14 +0000 (15:57 -0500)]
Update: Add comment in Featureless Make code to designate changes the must be done.

The use of main->program.parameters.arguments should no longer happen.
This is the old behavior and it looks like it has not been completely migrated.

This is wrong an can even have invalid read sizes.

15 months agoFeature: Add f_simple_packet_t for holding the packet data.
Kevin Day [Sat, 5 Aug 2023 19:44:08 +0000 (14:44 -0500)]
Feature: Add f_simple_packet_t for holding the packet data.

The f_simple_packet_range_t holds ranges within a string.

This f_simple_packet_t holds the actual values for the packet rather than ranges mapped to some string.

I am omitting unit tests at this time because I am going to do some additional changes involving the allocation and deallocation code project wide.

15 months agoBugfix: The socket id is not the same descriptor for reading.
Kevin Day [Sat, 5 Aug 2023 15:40:14 +0000 (10:40 -0500)]
Bugfix: The socket id is not the same descriptor for reading.

When binding and listening on some socket id, the accept call on that socket creates a new descriptor.
That descriptor is not the same as the original socket id.

Add a new id_data to the socket structure to represent the data transfer file descriptor that is created via the accept() call.
Add a new f_file_close_id() to close the file by the id in case the f_file_t is not available or in use.

15 months agoFeature: Add f_time project, adding functions for safely handling struct timespec.
Kevin Day [Sat, 5 Aug 2023 05:16:18 +0000 (00:16 -0500)]
Feature: Add f_time project, adding functions for safely handling struct timespec.

This adds f_time_spec_millisecond() and f_time_spec_nanosecond() for safely handling overflow and underflow when using standard FLL f_number_unsigned_t numbers.

Unit tests are added.

A comment in the controller prrogram is added to designate that the controller-specific functions should be updated to call these functions.

15 months agoCleanup: Style in this f_print source file.
Kevin Day [Sat, 5 Aug 2023 00:47:28 +0000 (19:47 -0500)]
Cleanup: Style in this f_print source file.

15 months agoUpdate: Wrap the static inline functions private_inline_f_print_to_error in custom...
Kevin Day [Sat, 5 Aug 2023 00:36:26 +0000 (19:36 -0500)]
Update: Wrap the static inline functions private_inline_f_print_to_error in custom disable macros.

As an exception case, wrap the private_inline_f_print_to_error() in _di_private_inline_private_f_print_to_error_ and _di_private_inline_f_print_to_error_ as appropriate.
Using a define condition on all of the possible cases would be difficult to manage.

An explicit define is simpler and easier in this exceptional case.

15 months agoCleanup: Reduce usage of static in functions.
Kevin Day [Sat, 5 Aug 2023 00:33:55 +0000 (19:33 -0500)]
Cleanup: Reduce usage of static in functions.

Remove the static from variables in functions that are not likely to be called multiple times and are not expected to be recursive.

I am backing off the experiment into this optimization for now.

15 months agoCleanup: Add extra parenthesis to prevent warning from clang.
Kevin Day [Sat, 5 Aug 2023 00:33:08 +0000 (19:33 -0500)]
Cleanup: Add extra parenthesis to prevent warning from clang.

15 months agoUpdate: Stand alone Featureless Make build settings.
Kevin Day [Fri, 4 Aug 2023 05:37:43 +0000 (00:37 -0500)]
Update: Stand alone Featureless Make build settings.

15 months agoCleanup: Remove the FSS Embedded List Program.
Kevin Day [Fri, 4 Aug 2023 05:00:15 +0000 (00:00 -0500)]
Cleanup: Remove the FSS Embedded List Program.

This embedded_list in fss_read should be used going forward.
The embedded_list in fss_read is not working yet and is just a copy of extended_list.
I will eventually get around to updating the embedded_list in fss_read to work as intended and expected.

15 months agoUpdate: Set the pipe flag consistely across programs.
Kevin Day [Fri, 4 Aug 2023 04:57:57 +0000 (23:57 -0500)]
Update: Set the pipe flag consistely across programs.

Use the same practice of designating the pipe as a main flag, even if the program isn't using the input pipe.

For the fss_read programs that use the word "pipe" in a main flag are renamed to "pipe" "format".

15 months agoUpdate: Control program to latest design practices, migrating from 0.6.x to 0.7.x...
Kevin Day [Fri, 4 Aug 2023 04:54:38 +0000 (23:54 -0500)]
Update: Control program to latest design practices, migrating from 0.6.x to 0.7.x design.

This gets the control program to compile under the latest design practices.

I did not to an in depth review as this program does not currently do anything.
Once the controller program is updated I will eventually come back to this.

15 months agoUpdate: Move standard console parameters enumeration into a standard enumeration...
Kevin Day [Thu, 3 Aug 2023 02:32:26 +0000 (21:32 -0500)]
Update: Move standard console parameters enumeration into a standard enumeration set and provide appropriate functions.

This should make the commonly used code slightly easier to maintain.

The control project is omitted because I am in the process of migrating it.
The migrated version will contain the appropriate changes from this.

15 months agoCleanup: Byte Dump program defines and comment.
Kevin Day [Tue, 1 Aug 2023 03:37:37 +0000 (22:37 -0500)]
Cleanup: Byte Dump program defines and comment.

15 months agoBugfix: The Byte Dump program prints extra new lines.
Kevin Day [Tue, 1 Aug 2023 01:57:54 +0000 (20:57 -0500)]
Bugfix: The Byte Dump program prints extra new lines.

Migrating from the old way to the new way results in extra new lines because of the first and last new line being printed.
Remove the extra new line being printed but still print in all other cases.

15 months agoBugfix: Byte Dump program 6-space string has only 5 spaces.
Kevin Day [Fri, 28 Jul 2023 03:33:41 +0000 (22:33 -0500)]
Bugfix: Byte Dump program 6-space string has only 5 spaces.

Add missing space.

15 months agoFeature: Add f_select_signal() and update unit tests.
Kevin Day [Fri, 28 Jul 2023 02:59:26 +0000 (21:59 -0500)]
Feature: Add f_select_signal() and update unit tests.

This adds the missing pselect() wrapper, f_select_signal().

15 months agoWorkaround: Clang compiler problems, add _clang_not_a_compile_time_constant_workaroun...
Kevin Day [Thu, 27 Jul 2023 04:03:42 +0000 (23:03 -0500)]
Workaround: Clang compiler problems, add _clang_not_a_compile_time_constant_workaround_ define in Byte Dump program.

CLang fails to handle this well and errors out with: "initializer element is not a compile-time constant".

Provide a custom define _clang_not_a_compile_time_constant_workaround_ to be used as a work-around for the problematic CLang compiler.

15 months agoBugfix: Add missing return statement in Byte Dump function.
Kevin Day [Thu, 27 Jul 2023 04:03:03 +0000 (23:03 -0500)]
Bugfix: Add missing return statement in Byte Dump function.

15 months agoUpdate: Remove unused fl_signal and fl_signal_state_interrupt.
Kevin Day [Thu, 27 Jul 2023 03:44:21 +0000 (22:44 -0500)]
Update: Remove unused fl_signal and fl_signal_state_interrupt.

The fl_signal_state_interrupt() function is not used and is replaced by fll_program_standard_signal_received().

The entire fl_signal can be and is removed.

15 months agoBugfix: Byte Dump program binary mode is printing wrong number of padding.
Kevin Day [Thu, 27 Jul 2023 02:38:14 +0000 (21:38 -0500)]
Bugfix: Byte Dump program binary mode is printing wrong number of padding.

15 months agoCleanup: Set named 0 enumeration in Byte Dump program.
Kevin Day [Thu, 27 Jul 2023 02:32:00 +0000 (21:32 -0500)]
Cleanup: Set named 0 enumeration in Byte Dump program.

15 months agoUpdate: Relocate several static stings into single location for Byte Dump program.
Kevin Day [Thu, 27 Jul 2023 02:31:05 +0000 (21:31 -0500)]
Update: Relocate several static stings into single location for Byte Dump program.

15 months agoBugfix: Fix new lines when printing help.
Kevin Day [Wed, 26 Jul 2023 04:26:15 +0000 (23:26 -0500)]
Bugfix: Fix new lines when printing help.

I noticed a couple of programs are missing the correct new lines when printing the help.

15 months agoUpdate: Minor fixes and consistency changes.
Kevin Day [Wed, 26 Jul 2023 04:18:47 +0000 (23:18 -0500)]
Update: Minor fixes and consistency changes.

Fix some small things that I noticed while I was migrating the byte_dump program.