IPnom Home • Manuals • FreeBSD

 FreeBSD Man Pages

Man Sections:Commands (1)System Calls (2)Library Functions (3)Device Drivers (4)File Formats (5)Miscellaneous (7)System Utilities (8)
Keyword Live Search (10 results max):
 Type in part of a command in the search box.
 
Index:
  ascii(7)
  build(7)
  clocks(7)
  development(7)
  ditroff(7)
  environ(7)
  ffs(7)
  firewall(7)
  groff(7)
  groff_char(7)
  groff_diff(7)
  groff_man(7)
  groff_mdoc(7)
  groff_me(7)
  groff_mm(7)
  groff_mmse(7)
  groff_ms(7)
  groff_trace(7)
  groff_www(7)
  hier(7)
  hostname(7)
  intro(7)
  lint(7)
  maclabel(7)
  mailaddr(7)
  man(7)
  mdoc(7)
  mdoc.samples(7)
  me(7)
  miscellaneous(7)
  mm(7)
  mmse(7)
  ms(7)
  operator(7)
  orig_me(7)
  ports(7)
  re_format(7)
  release(7)
  roff(7)
  sdoc(7)
  security(7)
  sprog(7)
  stdint(7)
  symlink(7)
  term(7)
  tuning(7)

sdoc(7)

NAME

     sdoc -- guide to adding security considerations sections to manual pages


DESCRIPTION

     This document presents guidelines for adding security considerations sec-
     tions to manual pages.  It provides two typical examples.

     The guidelines for writing FreeBSD manual pages in groff_mdoc(7) mandate
     that each manual page describing a feature of the FreeBSD system should
     contain a security considerations section describing what security
     requirements can be broken through the misuse of that feature.  When
     writing these sections, authors should attempt to achieve a happy medium
     between two conflicting goals: brevity and completeness.  On one hand,
     security consideration sections must not be too verbose, or busy readers
     might be dissuaded from reading them.  On the other hand, security con-
     sideration sections must not be incomplete, or they will fail in their
     purpose of instructing the reader on how to avoid all insecure uses.
     This document provides guidelines for balancing brevity and completeness
     in the security consideration section for a given feature of the FreeBSD
     system.

   Where to Start
     Begin by listing those general security requirements that can be violated
     through the misuse of the feature.  As described in the FreeBSD Security
     Architecture (FSA), there are four classes of security requirements:

	   integrity (example: non-administrators should not modify system
		   binaries),

	   confidentiality (example: non-administrators should not view the
		   shadow password file),

	   availability (example: the web server should respond to client
		   requests in a timely fashion), and

	   correctness (example: the ps program should provide exactly the
		   process table information listing functionality described
		   in its documentation - no more, no less.)

     The FSA contains a list of integrity, confidentiality, availability, and
     correctness requirements for the base FreeBSD system.  Many commands,
     tools, and utilities documented in sections 1, 6, and 8 of the manual are
     partly responsible for meeting these base system requirements.  Conse-
     quently, borrowing entries from the list in the FSA is a good way to
     begin the list of requirements for these commands, tools, and utilities.

     Complex servers and subsystems may have their own integrity, confiden-
     tiality, availability and correctness requirements in addition to the
     system-wide ones listed in the FSA.  Listing these additional require-
     ments will require some thought and analysis.  Correctness requirements
     will most often deal with configuration issues, especially in cases of
     programs that can load modules containing arbitrary functionality during
     run-time.

     For low-level features, such as the individual functions documented in
     sections 2, 3, and 9 of the manual, it is generally sufficient to proceed
     with only a single correctness requirement: simply that the function
     Practices man page, sprog(7), likewise cross-reference that document
     rather than replicating information.  Whenever possible, refer to this
     document rather than reproducing the material it contains.

   Where to Stop
     Security problems are often interrelated; individual problems often have
     far-reaching implications.  For example, the correctness of virtually any
     dynamically-linked program is dependent on the correct implementation and
     configuration of the run-time linker.  The correctness of this program,
     in turn, depends on the correctness of its libraries, the compiler used
     to build it, the correctness of the preceding compiler that was used to
     build that compiler, and so on, as described by Thompson (see SEE ALSO,
     below).

     Due to the need for brevity, security consideration sections should
     describe only those issues directly related to the feature that is the
     subject of the manual page.  Refer to other manual pages rather than
     duplicating the material found there.  Refer to generalized descriptions
     of problems in the FSA rather than referring to specific instances of
     those problems in other manual pages.  Ideally, each specific security-
     relevant issue should be described in exactly one manual page, preferably
     as a specific instance of a general problem described in the FSA.


EXAMPLES

     Security considerations sections for most individual functions can follow
     this simple formula:

	   1.	Provide one or two sentences describing each potential secu-
		rity problem, referencing the FSA to provide details whenever
		possible.
	   2.	Provide one or two sentences describing how to avoid each
		potential security problem.
	   3.	Provide a short example in code.

     This is an example security considerations section for the strcpy(3) man-
     ual page:

     The strcpy() function is easily misused in a manner which enables mali-
     cious users to arbitrarily change a running program's functionality
     through a buffer overflow attack.	(See the FSA.)

     Avoid using strcpy().  Instead, use strncpy() and ensure that no more
     characters are copied to the destination buffer than it can hold.	Do not
     forget to NUL-terminate the destination buffer, as strncpy() will not
     terminate the destination string if it is truncated.

     Note that strncpy() can also be problematic.  It may be a security con-
     cern for a string to be truncated at all.	Since the truncated string
     will not be as long as the original, it may refer to a completely differ-
     ent resource and usage of the truncated resource could result in very
     incorrect behavior.  Example:

     void
     foo(const char *arbitrary_string)
     {
	     char onstack[8];

     #if defined(BAD)
	      */
	     (void)strncpy(onstack, arbitrary_string, sizeof(onstack) - 1);
	     onstack[sizeof(onstack - 1)] = '\0';
     #elif defined(BEST)
	     /*
	      * These lines are even more robust due to testing for
	      * truncation.
	      */
	     if (strlen(arbitrary_string) + 1 > sizeof(onstack))
		     err(1, "onstack would be truncated");
	     (void)strncpy(onstack, arbitrary_string, sizeof(onstack));
     #endif
     }

     Security considerations sections for tools and commands are apt to be
     less formulaic.  Let your list of potentially-violated security require-
     ments be your guide; explain each one and list a solution in as concise a
     manner as possible.

     This is an example security considerations section for the rtld(1) manual
     page:

     Using the LD_LIBRARY_PATH and LD_PRELOAD environment variables, malicious
     users can cause the dynamic linker to link shared libraries of their own
     devising into the address space of processes running non-set-user-
     ID/group-ID programs.  These shared libraries can arbitrarily change the
     functionality of the program by replacing calls to standard library func-
     tions with calls to their own.  Although this feature is disabled for
     set-user-ID and set-group-ID programs, it can still be used to create
     Trojan horses in other programs.  (See the FSA.)

     All users should be aware that the correct operation of non set-user-
     ID/group-ID dynamically-linked programs depends on the proper configura-
     tion of these environment variables, and take care to avoid actions that
     might set them to values which would cause the run-time linker to link in
     shared libraries of unknown pedigree.


SEE ALSO

     groff_mdoc(7), security(7), sprog(7)

     "The FreeBSD Security Architecture", file:///usr/share/doc/{to be
     determined}.

     Edward Amoroso, AT&T Bell Laboratories, Fundamentals of Computer Security
     Technology, P T R Prentice Hall, 1994.

     Ken Thompson, "Reflections on Trusting Trust", Association for Computing
     Machinery, Inc., Communications of the ACM, Vol. 27, No. 8, 761-763,
     August, 1984.


HISTORY

     The sdoc manual page first appeared in FreeBSD 5.0.


AUTHORS

     Tim Fraser, NAI Labs CBOSS project. <tfraser@tislabs.com>
     Brian Feldman, NAI Labs CBOSS project. <bfeldman@tislabs.com>

FreeBSD 5.4		       October 12, 2001 		   FreeBSD 5.4

SPONSORED LINKS




Man(1) output converted with man2html , sed , awk