Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace strncat (unsafe) with strlcat (safe) #1863

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

warrenburch
Copy link

Some code bases will not allow strncat anymore for safety concerns. Replace with strlcat, note when using strlcat you simply pass the full size of the buffer (you do not account for the NULL terminator, this is handled for you).

I tested this by forcing inclusion of features using ...

CFLAGS='-DHAVE_CPU_AFFINITY -DHAVE_FLOWLABEL -DHAVE_TCP_CONGESTION -DHAVE_SENDFILE -DHAVE_SO_MAX_PACING_RATE -DHAVE_SO_BINDTODEVICE -DHAVE_DONT_FRAGMENT -DHAVE_PTHREAD' ./configure

NOTE: I tried to include SCTP and SSL but both failed to compile for missing headers.

I tested the

TAILQ_FOREACH(t, &(test->server_output_list), textlineentries) {
strlcat(output, t->line, buflen+1);
printf("otuput line: %s\n", t->line);
}

section by forcing

    struct iperf_textline *line1 = malloc(sizeof(*line1));
    struct iperf_textline *line2 = malloc(sizeof(*line2));
    
    line1->line = strdup("First line\n");
    line2->line = strdup("Second line\n");
    
    TAILQ_INSERT_TAIL(&(test->server_output_list), line1, textlineentries);
    TAILQ_INSERT_TAIL(&(test->server_output_list), line2, textlineentries);

beforehand. Tested error path by forcing error in server, force the IEDAEMON error with errno=999. Error string was as expected.

PLEASE NOTE the following text from the iperf3 license. Submitting a
pull request to the iperf3 repository constitutes "[making]
Enhancements available...publicly":

You are under no obligation whatsoever to provide any bug fixes, patches, or
upgrades to the features, functionality or performance of the source code
("Enhancements") to anyone; however, if you choose to make your Enhancements
available either publicly, or directly to Lawrence Berkeley National
Laboratory, without imposing a separate written license agreement for such
Enhancements, then you hereby grant the following license: a non-exclusive,
royalty-free perpetual license to install, use, modify, prepare derivative
works, incorporate into other computer software, distribute, and sublicense
such enhancements or derivative works thereof, in binary and source code form.

The complete iperf3 license is available in the LICENSE file in the
top directory of the iperf3 source tree.

  • Version of iperf3 (or development branch, such as master or
    3.1-STABLE) to which this pull request applies:

  • Issues fixed (if any):

  • Brief description of code changes (suitable for use as a commit message):

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant