/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-ctl.xml

  • Committer: teddy at recompile
  • Date: 2020-12-03 20:30:45 UTC
  • Revision ID: teddy@recompile.se-20201203203045-iqd6nq9y5nwalh1x
Minor fix of a test function

In dracut-module/password-agent, the test function
test_send_password_to_socket_EMSGSIZE() (which tests that the
send_password_to_socket() task function aborts properly when getting
EMSGSIZE when writing to the password socket), part of the test code
is supposed to find a message size which definitely does trigger
EMSGSIZE when send()ing to a socket.  Without a "break" in the proper
place, however, the size given is always exactly 1024 bytes too large.

This is very probably not a problem, since a too large message will
still be too large if it is increased by 1024 bytes, and send(2) in
practice checks the size before reading the buffer.  The biggest issue
would be if some version of send(2) would try to look at the last 1024
bytes of the message buffer before checking the message size; this
would then lead to a buffer over-read when running this test function.
(But even then there would be no security implications since the tests
are not run in the normal operation of the program.)

* dracut-module/password-agent.c
  (test_send_password_to_socket_EMSGSIZE): Break out early when ssret
  < 0 and errno == EMSGSIZE; don't allow loop to increase message_size
  again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3
3
        "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4
4
<!ENTITY COMMANDNAME "mandos-ctl">
5
 
<!ENTITY TIMESTAMP "2019-03-09">
 
5
<!ENTITY TIMESTAMP "2019-07-29">
6
6
<!ENTITY % common SYSTEM "common.ent">
7
7
%common;
8
8
]>
557
557
  
558
558
  <refsect1 id="example">
559
559
    <title>EXAMPLE</title>
 
560
    <!-- Name of test methods in class Test_commands_from_options are
 
561
         written in comments below.  When adding an example, add a
 
562
         test too which tests the documented behavior. -->
560
563
    <informalexample>
 
564
      <!-- Test method: test_manual_page_example_1() -->
561
565
      <para>
562
566
        To list all clients:
563
567
      </para>
567
571
    </informalexample>
568
572
    
569
573
    <informalexample>
 
574
      <!-- Test method: test_manual_page_example_2() -->
570
575
      <para>
571
576
        To list <emphasis>all</emphasis> settings for the clients
572
577
        named <quote>foo1.example.org</quote> and <quote
581
586
    </informalexample>
582
587
    
583
588
    <informalexample>
 
589
      <!-- Test method: test_manual_page_example_3() -->
584
590
      <para>
585
591
        To enable all clients:
586
592
      </para>
590
596
    </informalexample>
591
597
    
592
598
    <informalexample>
 
599
      <!-- Test method: test_manual_page_example_4() -->
593
600
      <para>
594
601
        To change timeout and interval value for the clients
595
602
        named <quote>foo1.example.org</quote> and <quote
598
605
      <para>
599
606
 
600
607
<!-- do not wrap this line -->
601
 
<userinput>&COMMANDNAME; --timeout="PT5M" --interval="PT1M" foo1.example.org foo2.example.org</userinput>
 
608
<userinput>&COMMANDNAME; --timeout=PT5M --interval=PT1M foo1.example.org foo2.example.org</userinput>
602
609
 
603
610
      </para>
604
611
    </informalexample>
605
612
    
606
613
    <informalexample>
 
614
      <!-- Test method: test_manual_page_example_5() -->
607
615
      <para>
608
 
        To approve all clients currently waiting for it:
 
616
        To approve all clients currently waiting for approval:
609
617
      </para>
610
618
      <para>
611
619
        <userinput>&COMMANDNAME; --approve --all</userinput>