All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] checkpolicy: remove extraneous policy build noise
@ 2018-09-19 19:08 Nick Kralevich
  2018-09-19 19:21 ` William Roberts
  2018-09-21 19:52 ` William Roberts
  0 siblings, 2 replies; 6+ messages in thread
From: Nick Kralevich @ 2018-09-19 19:08 UTC (permalink / raw)
  To: selinux

Reduce noise when calling the checkpolicy command line. In Android, this
creates unnecessary build noise which we'd like to avoid.

https://en.wikipedia.org/wiki/Unix_philosophy

  Rule of Silence
  Developers should design programs so that they do not print
  unnecessary output. This rule aims to allow other programs
  and developers to pick out the information they need from a
  program's output without having to parse verbosity.

An alternative approach would be to add a -s (silent) option to these
tools, or to have the Android build system redirect stdout to /dev/null.

Signed-off-by: Nick Kralevich <nnk@google.com>
---
 checkpolicy/checkmodule.c |  8 --------
 checkpolicy/checkpolicy.c | 11 -----------
 2 files changed, 19 deletions(-)

diff --git a/checkpolicy/checkmodule.c b/checkpolicy/checkmodule.c
index 46ce258f..8edc1f8c 100644
--- a/checkpolicy/checkmodule.c
+++ b/checkpolicy/checkmodule.c
@@ -228,7 +228,6 @@ int main(int argc, char **argv)
 		if (optind !=3D argc)
 			usage(argv[0]);
 	}
-	printf("%s:  loading policy configuration from %s\n", argv[0], file);
=20
 	/* Set policydb and sidtab used by libsepol service functions
 	   to my structures, so that I can directly populate and
@@ -302,8 +301,6 @@ int main(int argc, char **argv)
=20
 	sepol_sidtab_destroy(&sidtab);
=20
-	printf("%s:  policy configuration loaded\n", argv[0]);
-
 	if (outfile) {
 		FILE *outfp =3D fopen(outfile, "w");
=20
@@ -313,16 +310,11 @@ int main(int argc, char **argv)
 		}
=20
 		if (!cil) {
-			printf("%s:  writing binary representation (version %d) to %s\n",
-				   argv[0], policyvers, outfile);
-
 			if (write_binary_policy(&modpolicydb, outfp) !=3D 0) {
 				fprintf(stderr, "%s:  error writing %s\n", argv[0], outfile);
 				exit(1);
 			}
 		} else {
-			printf("%s:  writing CIL to %s\n",argv[0], outfile);
-
 			if (sepol_module_policydb_to_cil(outfp, &modpolicydb, 0) !=3D 0) {
 				fprintf(stderr, "%s:  error writing %s\n", argv[0], outfile);
 				exit(1);
diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
index fbda4558..12c4c405 100644
--- a/checkpolicy/checkpolicy.c
+++ b/checkpolicy/checkpolicy.c
@@ -512,8 +512,6 @@ int main(int argc, char **argv)
 		if (optind !=3D argc)
 			usage(argv[0]);
 	}
-	printf("%s:  loading policy configuration from %s\n", argv[0], file);
-
 	/* Set policydb and sidtab used by libsepol service functions
 	   to my structures, so that I can directly populate and
 	   manipulate them. */
@@ -623,8 +621,6 @@ int main(int argc, char **argv)
 	if (policydb_load_isids(&policydb, &sidtab))
 		exit(1);
=20
-	printf("%s:  policy configuration loaded\n", argv[0]);
-
 	if (outfile) {
 		outfp =3D fopen(outfile, "w");
 		if (!outfp) {
@@ -636,8 +632,6 @@ int main(int argc, char **argv)
=20
 		if (!cil) {
 			if (!conf) {
-				printf("%s:  writing binary representation (version %d) to %s\n", ar=
gv[0], policyvers, outfile);
-
 				policydb.policy_type =3D POLICY_KERN;
=20
 				policy_file_init(&pf);
@@ -645,8 +639,6 @@ int main(int argc, char **argv)
 				pf.fp =3D outfp;
 				ret =3D policydb_write(&policydb, &pf);
 			} else {
-				printf("%s:  writing policy.conf to %s\n",
-				       argv[0], outfile);
 				ret =3D sepol_kernel_policydb_to_conf(outfp, policydbp);
 			}
 			if (ret) {
@@ -655,7 +647,6 @@ int main(int argc, char **argv)
 				exit(1);
 			}
 		} else {
-			printf("%s:  writing CIL to %s\n",argv[0], outfile);
 			if (binary) {
 				ret =3D sepol_kernel_policydb_to_cil(outfp, policydbp);
 			} else {
@@ -894,8 +885,6 @@ int main(int argc, char **argv)
 			FGETS(ans, sizeof(ans), stdin);
 			pathlen =3D strlen(ans);
 			ans[pathlen - 1] =3D 0;
-			printf("%s:  loading policy configuration from %s\n",
-			       argv[0], ans);
 			fd =3D open(ans, O_RDONLY);
 			if (fd < 0) {
 				fprintf(stderr, "Can't open '%s':  %s\n",
--=20
2.19.0.397.gdd90340f6a-goog

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] checkpolicy: remove extraneous policy build noise
  2018-09-19 19:08 [PATCH] checkpolicy: remove extraneous policy build noise Nick Kralevich
@ 2018-09-19 19:21 ` William Roberts
  2018-09-19 19:38   ` Stephen Smalley
  2018-09-21 19:52 ` William Roberts
  1 sibling, 1 reply; 6+ messages in thread
From: William Roberts @ 2018-09-19 19:21 UTC (permalink / raw)
  To: Nick Kralevich; +Cc: selinux

[-- Attachment #1: Type: text/plain, Size: 6229 bytes --]

Some people might be checking this output since it's been there so long,
-s would be a good way to go.

Alternatively, a way to bring back this information via a verbose option -V
could
be considered.

Either way, a simple logging mechanism analogous to
LOGV/LOGW/LOGE could be useful, I wonder what subordinate routines
are logging. IIRC it was all fprintf(stderr) stuff in libselinux proper as
you allude
to in the redirection of stdout comment. We don't need to address this in
this
patch, but we may want to consider it at some point.

I would lean towards a silent flag as it's backwards compatible,
but noting that it doesn't suppress subordinate callers.

I would also yield that opinion, as removing it works for me.

On Wed, Sep 19, 2018 at 12:13 PM Nick Kralevich via Selinux <
selinux@tycho.nsa.gov> wrote:

> Reduce noise when calling the checkpolicy command line. In Android, this
> creates unnecessary build noise which we'd like to avoid.
>
> https://en.wikipedia.org/wiki/Unix_philosophy
>
>   Rule of Silence
>   Developers should design programs so that they do not print
>   unnecessary output. This rule aims to allow other programs
>   and developers to pick out the information they need from a
>   program's output without having to parse verbosity.
>
> An alternative approach would be to add a -s (silent) option to these
> tools, or to have the Android build system redirect stdout to /dev/null.
>
> Signed-off-by: Nick Kralevich <nnk@google.com>
> ---
>  checkpolicy/checkmodule.c |  8 --------
>  checkpolicy/checkpolicy.c | 11 -----------
>  2 files changed, 19 deletions(-)
>
> diff --git a/checkpolicy/checkmodule.c b/checkpolicy/checkmodule.c
> index 46ce258f..8edc1f8c 100644
> --- a/checkpolicy/checkmodule.c
> +++ b/checkpolicy/checkmodule.c
> @@ -228,7 +228,6 @@ int main(int argc, char **argv)
>                 if (optind != argc)
>                         usage(argv[0]);
>         }
> -       printf("%s:  loading policy configuration from %s\n", argv[0],
> file);
>
>         /* Set policydb and sidtab used by libsepol service functions
>            to my structures, so that I can directly populate and
> @@ -302,8 +301,6 @@ int main(int argc, char **argv)
>
>         sepol_sidtab_destroy(&sidtab);
>
> -       printf("%s:  policy configuration loaded\n", argv[0]);
> -
>         if (outfile) {
>                 FILE *outfp = fopen(outfile, "w");
>
> @@ -313,16 +310,11 @@ int main(int argc, char **argv)
>                 }
>
>                 if (!cil) {
> -                       printf("%s:  writing binary representation
> (version %d) to %s\n",
> -                                  argv[0], policyvers, outfile);
> -
>                         if (write_binary_policy(&modpolicydb, outfp) != 0)
> {
>                                 fprintf(stderr, "%s:  error writing %s\n",
> argv[0], outfile);
>                                 exit(1);
>                         }
>                 } else {
> -                       printf("%s:  writing CIL to %s\n",argv[0],
> outfile);
> -
>                         if (sepol_module_policydb_to_cil(outfp,
> &modpolicydb, 0) != 0) {
>                                 fprintf(stderr, "%s:  error writing %s\n",
> argv[0], outfile);
>                                 exit(1);
> diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
> index fbda4558..12c4c405 100644
> --- a/checkpolicy/checkpolicy.c
> +++ b/checkpolicy/checkpolicy.c
> @@ -512,8 +512,6 @@ int main(int argc, char **argv)
>                 if (optind != argc)
>                         usage(argv[0]);
>         }
> -       printf("%s:  loading policy configuration from %s\n", argv[0],
> file);
> -
>         /* Set policydb and sidtab used by libsepol service functions
>            to my structures, so that I can directly populate and
>            manipulate them. */
> @@ -623,8 +621,6 @@ int main(int argc, char **argv)
>         if (policydb_load_isids(&policydb, &sidtab))
>                 exit(1);
>
> -       printf("%s:  policy configuration loaded\n", argv[0]);
> -
>         if (outfile) {
>                 outfp = fopen(outfile, "w");
>                 if (!outfp) {
> @@ -636,8 +632,6 @@ int main(int argc, char **argv)
>
>                 if (!cil) {
>                         if (!conf) {
> -                               printf("%s:  writing binary representation
> (version %d) to %s\n", argv[0], policyvers, outfile);
> -
>                                 policydb.policy_type = POLICY_KERN;
>
>                                 policy_file_init(&pf);
> @@ -645,8 +639,6 @@ int main(int argc, char **argv)
>                                 pf.fp = outfp;
>                                 ret = policydb_write(&policydb, &pf);
>                         } else {
> -                               printf("%s:  writing policy.conf to %s\n",
> -                                      argv[0], outfile);
>                                 ret = sepol_kernel_policydb_to_conf(outfp,
> policydbp);
>                         }
>                         if (ret) {
> @@ -655,7 +647,6 @@ int main(int argc, char **argv)
>                                 exit(1);
>                         }
>                 } else {
> -                       printf("%s:  writing CIL to %s\n",argv[0],
> outfile);
>                         if (binary) {
>                                 ret = sepol_kernel_policydb_to_cil(outfp,
> policydbp);
>                         } else {
> @@ -894,8 +885,6 @@ int main(int argc, char **argv)
>                         FGETS(ans, sizeof(ans), stdin);
>                         pathlen = strlen(ans);
>                         ans[pathlen - 1] = 0;
> -                       printf("%s:  loading policy configuration from
> %s\n",
> -                              argv[0], ans);
>                         fd = open(ans, O_RDONLY);
>                         if (fd < 0) {
>                                 fprintf(stderr, "Can't open '%s':  %s\n",
> --
> 2.19.0.397.gdd90340f6a-goog
>
> _______________________________________________
> Selinux mailing list
> Selinux@tycho.nsa.gov
> To unsubscribe, send email to Selinux-leave@tycho.nsa.gov.
> To get help, send an email containing "help" to
> Selinux-request@tycho.nsa.gov.
>

[-- Attachment #2: Type: text/html, Size: 8267 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] checkpolicy: remove extraneous policy build noise
  2018-09-19 19:21 ` William Roberts
@ 2018-09-19 19:38   ` Stephen Smalley
  2018-09-19 19:41     ` William Roberts
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Smalley @ 2018-09-19 19:38 UTC (permalink / raw)
  To: William Roberts, Nick Kralevich; +Cc: selinux

On 09/19/2018 03:21 PM, William Roberts wrote:
> Some people might be checking this output since it's been there so long,
> -s would be a good way to go.
> 
> Alternatively, a way to bring back this information via a verbose option 
> -V could
> be considered.
> 
> Either way, a simple logging mechanism analogous to
> LOGV/LOGW/LOGE could be useful, I wonder what subordinate routines
> are logging. IIRC it was all fprintf(stderr) stuff in libselinux proper 
> as you allude
> to in the redirection of stdout comment. We don't need to address this 
> in this
> patch, but we may want to consider it at some point.
> 
> I would lean towards a silent flag as it's backwards compatible,
> but noting that it doesn't suppress subordinate callers.
> 
> I would also yield that opinion, as removing it works for me.

I'm ok dropping the output unless someone knows of an existing user that 
relies upon it (which I can't really envision).

With regard to subordinate routines, libsepol has sepol_debug(0) or 
sepol_msg_set_callback() to suppress or redirect its logging.

checkpolicy doesn't use libselinux but it likewise has 
selinux_set_callback().

> 
> On Wed, Sep 19, 2018 at 12:13 PM Nick Kralevich via Selinux 
> <selinux@tycho.nsa.gov <mailto:selinux@tycho.nsa.gov>> wrote:
> 
>     Reduce noise when calling the checkpolicy command line. In Android, this
>     creates unnecessary build noise which we'd like to avoid.
> 
>     https://en.wikipedia.org/wiki/Unix_philosophy
> 
>        Rule of Silence
>        Developers should design programs so that they do not print
>        unnecessary output. This rule aims to allow other programs
>        and developers to pick out the information they need from a
>        program's output without having to parse verbosity.
> 
>     An alternative approach would be to add a -s (silent) option to these
>     tools, or to have the Android build system redirect stdout to /dev/null.
> 
>     Signed-off-by: Nick Kralevich <nnk@google.com <mailto:nnk@google.com>>
>     ---
>       checkpolicy/checkmodule.c |  8 --------
>       checkpolicy/checkpolicy.c | 11 -----------
>       2 files changed, 19 deletions(-)
> 
>     diff --git a/checkpolicy/checkmodule.c b/checkpolicy/checkmodule.c
>     index 46ce258f..8edc1f8c 100644
>     --- a/checkpolicy/checkmodule.c
>     +++ b/checkpolicy/checkmodule.c
>     @@ -228,7 +228,6 @@ int main(int argc, char **argv)
>                      if (optind != argc)
>                              usage(argv[0]);
>              }
>     -       printf("%s:  loading policy configuration from %s\n",
>     argv[0], file);
> 
>              /* Set policydb and sidtab used by libsepol service functions
>                 to my structures, so that I can directly populate and
>     @@ -302,8 +301,6 @@ int main(int argc, char **argv)
> 
>              sepol_sidtab_destroy(&sidtab);
> 
>     -       printf("%s:  policy configuration loaded\n", argv[0]);
>     -
>              if (outfile) {
>                      FILE *outfp = fopen(outfile, "w");
> 
>     @@ -313,16 +310,11 @@ int main(int argc, char **argv)
>                      }
> 
>                      if (!cil) {
>     -                       printf("%s:  writing binary representation
>     (version %d) to %s\n",
>     -                                  argv[0], policyvers, outfile);
>     -
>                              if (write_binary_policy(&modpolicydb,
>     outfp) != 0) {
>                                      fprintf(stderr, "%s:  error writing
>     %s\n", argv[0], outfile);
>                                      exit(1);
>                              }
>                      } else {
>     -                       printf("%s:  writing CIL to %s\n",argv[0],
>     outfile);
>     -
>                              if (sepol_module_policydb_to_cil(outfp,
>     &modpolicydb, 0) != 0) {
>                                      fprintf(stderr, "%s:  error writing
>     %s\n", argv[0], outfile);
>                                      exit(1);
>     diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
>     index fbda4558..12c4c405 100644
>     --- a/checkpolicy/checkpolicy.c
>     +++ b/checkpolicy/checkpolicy.c
>     @@ -512,8 +512,6 @@ int main(int argc, char **argv)
>                      if (optind != argc)
>                              usage(argv[0]);
>              }
>     -       printf("%s:  loading policy configuration from %s\n",
>     argv[0], file);
>     -
>              /* Set policydb and sidtab used by libsepol service functions
>                 to my structures, so that I can directly populate and
>                 manipulate them. */
>     @@ -623,8 +621,6 @@ int main(int argc, char **argv)
>              if (policydb_load_isids(&policydb, &sidtab))
>                      exit(1);
> 
>     -       printf("%s:  policy configuration loaded\n", argv[0]);
>     -
>              if (outfile) {
>                      outfp = fopen(outfile, "w");
>                      if (!outfp) {
>     @@ -636,8 +632,6 @@ int main(int argc, char **argv)
> 
>                      if (!cil) {
>                              if (!conf) {
>     -                               printf("%s:  writing binary
>     representation (version %d) to %s\n", argv[0], policyvers, outfile);
>     -
>                                      policydb.policy_type = POLICY_KERN;
> 
>                                      policy_file_init(&pf);
>     @@ -645,8 +639,6 @@ int main(int argc, char **argv)
>                                      pf.fp = outfp;
>                                      ret = policydb_write(&policydb, &pf);
>                              } else {
>     -                               printf("%s:  writing policy.conf to
>     %s\n",
>     -                                      argv[0], outfile);
>                                      ret =
>     sepol_kernel_policydb_to_conf(outfp, policydbp);
>                              }
>                              if (ret) {
>     @@ -655,7 +647,6 @@ int main(int argc, char **argv)
>                                      exit(1);
>                              }
>                      } else {
>     -                       printf("%s:  writing CIL to %s\n",argv[0],
>     outfile);
>                              if (binary) {
>                                      ret =
>     sepol_kernel_policydb_to_cil(outfp, policydbp);
>                              } else {
>     @@ -894,8 +885,6 @@ int main(int argc, char **argv)
>                              FGETS(ans, sizeof(ans), stdin);
>                              pathlen = strlen(ans);
>                              ans[pathlen - 1] = 0;
>     -                       printf("%s:  loading policy configuration
>     from %s\n",
>     -                              argv[0], ans);
>                              fd = open(ans, O_RDONLY);
>                              if (fd < 0) {
>                                      fprintf(stderr, "Can't open '%s': 
>     %s\n",
>     -- 
>     2.19.0.397.gdd90340f6a-goog
> 
>     _______________________________________________
>     Selinux mailing list
>     Selinux@tycho.nsa.gov <mailto:Selinux@tycho.nsa.gov>
>     To unsubscribe, send email to Selinux-leave@tycho.nsa.gov
>     <mailto:Selinux-leave@tycho.nsa.gov>.
>     To get help, send an email containing "help" to
>     Selinux-request@tycho.nsa.gov <mailto:Selinux-request@tycho.nsa.gov>.
> 
> 
> 
> _______________________________________________
> Selinux mailing list
> Selinux@tycho.nsa.gov
> To unsubscribe, send email to Selinux-leave@tycho.nsa.gov.
> To get help, send an email containing "help" to Selinux-request@tycho.nsa.gov.
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] checkpolicy: remove extraneous policy build noise
  2018-09-19 19:38   ` Stephen Smalley
@ 2018-09-19 19:41     ` William Roberts
  2018-09-19 19:48       ` Stephen Smalley
  0 siblings, 1 reply; 6+ messages in thread
From: William Roberts @ 2018-09-19 19:41 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: Nick Kralevich, selinux

[-- Attachment #1: Type: text/plain, Size: 8490 bytes --]

On Wed, Sep 19, 2018 at 12:36 PM Stephen Smalley <sds@tycho.nsa.gov> wrote:

> On 09/19/2018 03:21 PM, William Roberts wrote:
> > Some people might be checking this output since it's been there so long,
> > -s would be a good way to go.
> >
> > Alternatively, a way to bring back this information via a verbose option
> > -V could
> > be considered.
> >
> > Either way, a simple logging mechanism analogous to
> > LOGV/LOGW/LOGE could be useful, I wonder what subordinate routines
> > are logging. IIRC it was all fprintf(stderr) stuff in libselinux proper
> > as you allude
> > to in the redirection of stdout comment. We don't need to address this
> > in this
> > patch, but we may want to consider it at some point.
> >
> > I would lean towards a silent flag as it's backwards compatible,
> > but noting that it doesn't suppress subordinate callers.
> >
> > I would also yield that opinion, as removing it works for me.
>
> I'm ok dropping the output unless someone knows of an existing user that
> relies upon it (which I can't really envision).
>

Why don't we extend the review period to 72 hours, and ill apply this
Friday unless we hear of this breaking someone. Essentially
consider this a soft-ack.


>
> With regard to subordinate routines, libsepol has sepol_debug(0) or
> sepol_msg_set_callback() to suppress or redirect its logging.



> checkpolicy doesn't use libselinux but it likewise has
> selinux_set_callback().
>

What about things like:
libselinux/src/load_policy.c:299: fprintf(stderr, "libselinux:  %s\n",
errormsg);

Also utils and others are using fprintf directly.... perhaps something we
wish to make common
across utilities and subordinate libs.


> >
> > On Wed, Sep 19, 2018 at 12:13 PM Nick Kralevich via Selinux
> > <selinux@tycho.nsa.gov <mailto:selinux@tycho.nsa.gov>> wrote:
> >
> >     Reduce noise when calling the checkpolicy command line. In Android,
> this
> >     creates unnecessary build noise which we'd like to avoid.
> >
> >     https://en.wikipedia.org/wiki/Unix_philosophy
> >
> >        Rule of Silence
> >        Developers should design programs so that they do not print
> >        unnecessary output. This rule aims to allow other programs
> >        and developers to pick out the information they need from a
> >        program's output without having to parse verbosity.
> >
> >     An alternative approach would be to add a -s (silent) option to these
> >     tools, or to have the Android build system redirect stdout to
> /dev/null.
> >
> >     Signed-off-by: Nick Kralevich <nnk@google.com <mailto:nnk@google.com
> >>
> >     ---
> >       checkpolicy/checkmodule.c |  8 --------
> >       checkpolicy/checkpolicy.c | 11 -----------
> >       2 files changed, 19 deletions(-)
> >
> >     diff --git a/checkpolicy/checkmodule.c b/checkpolicy/checkmodule.c
> >     index 46ce258f..8edc1f8c 100644
> >     --- a/checkpolicy/checkmodule.c
> >     +++ b/checkpolicy/checkmodule.c
> >     @@ -228,7 +228,6 @@ int main(int argc, char **argv)
> >                      if (optind != argc)
> >                              usage(argv[0]);
> >              }
> >     -       printf("%s:  loading policy configuration from %s\n",
> >     argv[0], file);
> >
> >              /* Set policydb and sidtab used by libsepol service
> functions
> >                 to my structures, so that I can directly populate and
> >     @@ -302,8 +301,6 @@ int main(int argc, char **argv)
> >
> >              sepol_sidtab_destroy(&sidtab);
> >
> >     -       printf("%s:  policy configuration loaded\n", argv[0]);
> >     -
> >              if (outfile) {
> >                      FILE *outfp = fopen(outfile, "w");
> >
> >     @@ -313,16 +310,11 @@ int main(int argc, char **argv)
> >                      }
> >
> >                      if (!cil) {
> >     -                       printf("%s:  writing binary representation
> >     (version %d) to %s\n",
> >     -                                  argv[0], policyvers, outfile);
> >     -
> >                              if (write_binary_policy(&modpolicydb,
> >     outfp) != 0) {
> >                                      fprintf(stderr, "%s:  error writing
> >     %s\n", argv[0], outfile);
> >                                      exit(1);
> >                              }
> >                      } else {
> >     -                       printf("%s:  writing CIL to %s\n",argv[0],
> >     outfile);
> >     -
> >                              if (sepol_module_policydb_to_cil(outfp,
> >     &modpolicydb, 0) != 0) {
> >                                      fprintf(stderr, "%s:  error writing
> >     %s\n", argv[0], outfile);
> >                                      exit(1);
> >     diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
> >     index fbda4558..12c4c405 100644
> >     --- a/checkpolicy/checkpolicy.c
> >     +++ b/checkpolicy/checkpolicy.c
> >     @@ -512,8 +512,6 @@ int main(int argc, char **argv)
> >                      if (optind != argc)
> >                              usage(argv[0]);
> >              }
> >     -       printf("%s:  loading policy configuration from %s\n",
> >     argv[0], file);
> >     -
> >              /* Set policydb and sidtab used by libsepol service
> functions
> >                 to my structures, so that I can directly populate and
> >                 manipulate them. */
> >     @@ -623,8 +621,6 @@ int main(int argc, char **argv)
> >              if (policydb_load_isids(&policydb, &sidtab))
> >                      exit(1);
> >
> >     -       printf("%s:  policy configuration loaded\n", argv[0]);
> >     -
> >              if (outfile) {
> >                      outfp = fopen(outfile, "w");
> >                      if (!outfp) {
> >     @@ -636,8 +632,6 @@ int main(int argc, char **argv)
> >
> >                      if (!cil) {
> >                              if (!conf) {
> >     -                               printf("%s:  writing binary
> >     representation (version %d) to %s\n", argv[0], policyvers, outfile);
> >     -
> >                                      policydb.policy_type = POLICY_KERN;
> >
> >                                      policy_file_init(&pf);
> >     @@ -645,8 +639,6 @@ int main(int argc, char **argv)
> >                                      pf.fp = outfp;
> >                                      ret = policydb_write(&policydb,
> &pf);
> >                              } else {
> >     -                               printf("%s:  writing policy.conf to
> >     %s\n",
> >     -                                      argv[0], outfile);
> >                                      ret =
> >     sepol_kernel_policydb_to_conf(outfp, policydbp);
> >                              }
> >                              if (ret) {
> >     @@ -655,7 +647,6 @@ int main(int argc, char **argv)
> >                                      exit(1);
> >                              }
> >                      } else {
> >     -                       printf("%s:  writing CIL to %s\n",argv[0],
> >     outfile);
> >                              if (binary) {
> >                                      ret =
> >     sepol_kernel_policydb_to_cil(outfp, policydbp);
> >                              } else {
> >     @@ -894,8 +885,6 @@ int main(int argc, char **argv)
> >                              FGETS(ans, sizeof(ans), stdin);
> >                              pathlen = strlen(ans);
> >                              ans[pathlen - 1] = 0;
> >     -                       printf("%s:  loading policy configuration
> >     from %s\n",
> >     -                              argv[0], ans);
> >                              fd = open(ans, O_RDONLY);
> >                              if (fd < 0) {
> >                                      fprintf(stderr, "Can't open '%s':
> >     %s\n",
> >     --
> >     2.19.0.397.gdd90340f6a-goog
> >
> >     _______________________________________________
> >     Selinux mailing list
> >     Selinux@tycho.nsa.gov <mailto:Selinux@tycho.nsa.gov>
> >     To unsubscribe, send email to Selinux-leave@tycho.nsa.gov
> >     <mailto:Selinux-leave@tycho.nsa.gov>.
> >     To get help, send an email containing "help" to
> >     Selinux-request@tycho.nsa.gov <mailto:Selinux-request@tycho.nsa.gov
> >.
> >
> >
> >
> > _______________________________________________
> > Selinux mailing list
> > Selinux@tycho.nsa.gov
> > To unsubscribe, send email to Selinux-leave@tycho.nsa.gov.
> > To get help, send an email containing "help" to
> Selinux-request@tycho.nsa.gov.
> >
>
>

[-- Attachment #2: Type: text/html, Size: 12724 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] checkpolicy: remove extraneous policy build noise
  2018-09-19 19:41     ` William Roberts
@ 2018-09-19 19:48       ` Stephen Smalley
  0 siblings, 0 replies; 6+ messages in thread
From: Stephen Smalley @ 2018-09-19 19:48 UTC (permalink / raw)
  To: William Roberts; +Cc: Nick Kralevich, selinux

On 09/19/2018 03:41 PM, William Roberts wrote:
> 
> 
> On Wed, Sep 19, 2018 at 12:36 PM Stephen Smalley <sds@tycho.nsa.gov 
> <mailto:sds@tycho.nsa.gov>> wrote:
> 
>     On 09/19/2018 03:21 PM, William Roberts wrote:
>      > Some people might be checking this output since it's been there
>     so long,
>      > -s would be a good way to go.
>      >
>      > Alternatively, a way to bring back this information via a verbose
>     option
>      > -V could
>      > be considered.
>      >
>      > Either way, a simple logging mechanism analogous to
>      > LOGV/LOGW/LOGE could be useful, I wonder what subordinate routines
>      > are logging. IIRC it was all fprintf(stderr) stuff in libselinux
>     proper
>      > as you allude
>      > to in the redirection of stdout comment. We don't need to address
>     this
>      > in this
>      > patch, but we may want to consider it at some point.
>      >
>      > I would lean towards a silent flag as it's backwards compatible,
>      > but noting that it doesn't suppress subordinate callers.
>      >
>      > I would also yield that opinion, as removing it works for me.
> 
>     I'm ok dropping the output unless someone knows of an existing user
>     that
>     relies upon it (which I can't really envision).
> 
> 
> Why don't we extend the review period to 72 hours, and ill apply this
> Friday unless we hear of this breaking someone. Essentially
> consider this a soft-ack.
> 
> 
>     With regard to subordinate routines, libsepol has sepol_debug(0) or
>     sepol_msg_set_callback() to suppress or redirect its logging.
> 
>     checkpolicy doesn't use libselinux but it likewise has
>     selinux_set_callback().
> 
> 
> What about things like:
> libselinux/src/load_policy.c:299:fprintf(stderr, "libselinux:  %s\n", 
> errormsg);

Yes, there are a few lingering cases that ought to be converted over to 
selinux_log().

> 
> Also utils and others are using fprintf directly.... perhaps something 
> we wish to make common
> across utilities and subordinate libs.

No, it is completely appropriate for the utilities to do it directly. 
Only the library should be using the callbacks.

> 
> 
>      >
>      > On Wed, Sep 19, 2018 at 12:13 PM Nick Kralevich via Selinux
>      > <selinux@tycho.nsa.gov <mailto:selinux@tycho.nsa.gov>
>     <mailto:selinux@tycho.nsa.gov <mailto:selinux@tycho.nsa.gov>>> wrote:
>      >
>      >     Reduce noise when calling the checkpolicy command line. In
>     Android, this
>      >     creates unnecessary build noise which we'd like to avoid.
>      >
>      > https://en.wikipedia.org/wiki/Unix_philosophy
>      >
>      >        Rule of Silence
>      >        Developers should design programs so that they do not print
>      >        unnecessary output. This rule aims to allow other programs
>      >        and developers to pick out the information they need from a
>      >        program's output without having to parse verbosity.
>      >
>      >     An alternative approach would be to add a -s (silent) option
>     to these
>      >     tools, or to have the Android build system redirect stdout to
>     /dev/null.
>      >
>      >     Signed-off-by: Nick Kralevich <nnk@google.com
>     <mailto:nnk@google.com> <mailto:nnk@google.com <mailto:nnk@google.com>>>
>      >     ---
>      >       checkpolicy/checkmodule.c |  8 --------
>      >       checkpolicy/checkpolicy.c | 11 -----------
>      >       2 files changed, 19 deletions(-)
>      >
>      >     diff --git a/checkpolicy/checkmodule.c
>     b/checkpolicy/checkmodule.c
>      >     index 46ce258f..8edc1f8c 100644
>      >     --- a/checkpolicy/checkmodule.c
>      >     +++ b/checkpolicy/checkmodule.c
>      >     @@ -228,7 +228,6 @@ int main(int argc, char **argv)
>      >                      if (optind != argc)
>      >                              usage(argv[0]);
>      >              }
>      >     -       printf("%s:  loading policy configuration from %s\n",
>      >     argv[0], file);
>      >
>      >              /* Set policydb and sidtab used by libsepol service
>     functions
>      >                 to my structures, so that I can directly populate and
>      >     @@ -302,8 +301,6 @@ int main(int argc, char **argv)
>      >
>      >              sepol_sidtab_destroy(&sidtab);
>      >
>      >     -       printf("%s:  policy configuration loaded\n", argv[0]);
>      >     -
>      >              if (outfile) {
>      >                      FILE *outfp = fopen(outfile, "w");
>      >
>      >     @@ -313,16 +310,11 @@ int main(int argc, char **argv)
>      >                      }
>      >
>      >                      if (!cil) {
>      >     -                       printf("%s:  writing binary
>     representation
>      >     (version %d) to %s\n",
>      >     -                                  argv[0], policyvers, outfile);
>      >     -
>      >                              if (write_binary_policy(&modpolicydb,
>      >     outfp) != 0) {
>      >                                      fprintf(stderr, "%s:  error
>     writing
>      >     %s\n", argv[0], outfile);
>      >                                      exit(1);
>      >                              }
>      >                      } else {
>      >     -                       printf("%s:  writing CIL to
>     %s\n",argv[0],
>      >     outfile);
>      >     -
>      >                              if (sepol_module_policydb_to_cil(outfp,
>      >     &modpolicydb, 0) != 0) {
>      >                                      fprintf(stderr, "%s:  error
>     writing
>      >     %s\n", argv[0], outfile);
>      >                                      exit(1);
>      >     diff --git a/checkpolicy/checkpolicy.c
>     b/checkpolicy/checkpolicy.c
>      >     index fbda4558..12c4c405 100644
>      >     --- a/checkpolicy/checkpolicy.c
>      >     +++ b/checkpolicy/checkpolicy.c
>      >     @@ -512,8 +512,6 @@ int main(int argc, char **argv)
>      >                      if (optind != argc)
>      >                              usage(argv[0]);
>      >              }
>      >     -       printf("%s:  loading policy configuration from %s\n",
>      >     argv[0], file);
>      >     -
>      >              /* Set policydb and sidtab used by libsepol service
>     functions
>      >                 to my structures, so that I can directly populate and
>      >                 manipulate them. */
>      >     @@ -623,8 +621,6 @@ int main(int argc, char **argv)
>      >              if (policydb_load_isids(&policydb, &sidtab))
>      >                      exit(1);
>      >
>      >     -       printf("%s:  policy configuration loaded\n", argv[0]);
>      >     -
>      >              if (outfile) {
>      >                      outfp = fopen(outfile, "w");
>      >                      if (!outfp) {
>      >     @@ -636,8 +632,6 @@ int main(int argc, char **argv)
>      >
>      >                      if (!cil) {
>      >                              if (!conf) {
>      >     -                               printf("%s:  writing binary
>      >     representation (version %d) to %s\n", argv[0], policyvers,
>     outfile);
>      >     -
>      >                                      policydb.policy_type =
>     POLICY_KERN;
>      >
>      >                                      policy_file_init(&pf);
>      >     @@ -645,8 +639,6 @@ int main(int argc, char **argv)
>      >                                      pf.fp = outfp;
>      >                                      ret =
>     policydb_write(&policydb, &pf);
>      >                              } else {
>      >     -                               printf("%s:  writing
>     policy.conf to
>      >     %s\n",
>      >     -                                      argv[0], outfile);
>      >                                      ret =
>      >     sepol_kernel_policydb_to_conf(outfp, policydbp);
>      >                              }
>      >                              if (ret) {
>      >     @@ -655,7 +647,6 @@ int main(int argc, char **argv)
>      >                                      exit(1);
>      >                              }
>      >                      } else {
>      >     -                       printf("%s:  writing CIL to
>     %s\n",argv[0],
>      >     outfile);
>      >                              if (binary) {
>      >                                      ret =
>      >     sepol_kernel_policydb_to_cil(outfp, policydbp);
>      >                              } else {
>      >     @@ -894,8 +885,6 @@ int main(int argc, char **argv)
>      >                              FGETS(ans, sizeof(ans), stdin);
>      >                              pathlen = strlen(ans);
>      >                              ans[pathlen - 1] = 0;
>      >     -                       printf("%s:  loading policy configuration
>      >     from %s\n",
>      >     -                              argv[0], ans);
>      >                              fd = open(ans, O_RDONLY);
>      >                              if (fd < 0) {
>      >                                      fprintf(stderr, "Can't open
>     '%s':
>      >     %s\n",
>      >     --
>      >     2.19.0.397.gdd90340f6a-goog
>      >
>      >     _______________________________________________
>      >     Selinux mailing list
>      > Selinux@tycho.nsa.gov <mailto:Selinux@tycho.nsa.gov>
>     <mailto:Selinux@tycho.nsa.gov <mailto:Selinux@tycho.nsa.gov>>
>      >     To unsubscribe, send email to Selinux-leave@tycho.nsa.gov
>     <mailto:Selinux-leave@tycho.nsa.gov>
>      >     <mailto:Selinux-leave@tycho.nsa.gov
>     <mailto:Selinux-leave@tycho.nsa.gov>>.
>      >     To get help, send an email containing "help" to
>      > Selinux-request@tycho.nsa.gov
>     <mailto:Selinux-request@tycho.nsa.gov>
>     <mailto:Selinux-request@tycho.nsa.gov
>     <mailto:Selinux-request@tycho.nsa.gov>>.
>      >
>      >
>      >
>      > _______________________________________________
>      > Selinux mailing list
>      > Selinux@tycho.nsa.gov <mailto:Selinux@tycho.nsa.gov>
>      > To unsubscribe, send email to Selinux-leave@tycho.nsa.gov
>     <mailto:Selinux-leave@tycho.nsa.gov>.
>      > To get help, send an email containing "help" to
>     Selinux-request@tycho.nsa.gov <mailto:Selinux-request@tycho.nsa.gov>.
>      >
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] checkpolicy: remove extraneous policy build noise
  2018-09-19 19:08 [PATCH] checkpolicy: remove extraneous policy build noise Nick Kralevich
  2018-09-19 19:21 ` William Roberts
@ 2018-09-21 19:52 ` William Roberts
  1 sibling, 0 replies; 6+ messages in thread
From: William Roberts @ 2018-09-21 19:52 UTC (permalink / raw)
  To: Nick Kralevich; +Cc: selinux

[-- Attachment #1: Type: text/plain, Size: 5562 bytes --]

merged: https://github.com/SELinuxProject/selinux/pull/99

On Wed, Sep 19, 2018 at 12:13 PM Nick Kralevich via Selinux <
selinux@tycho.nsa.gov> wrote:

> Reduce noise when calling the checkpolicy command line. In Android, this
> creates unnecessary build noise which we'd like to avoid.
>
> https://en.wikipedia.org/wiki/Unix_philosophy
>
>   Rule of Silence
>   Developers should design programs so that they do not print
>   unnecessary output. This rule aims to allow other programs
>   and developers to pick out the information they need from a
>   program's output without having to parse verbosity.
>
> An alternative approach would be to add a -s (silent) option to these
> tools, or to have the Android build system redirect stdout to /dev/null.
>
> Signed-off-by: Nick Kralevich <nnk@google.com>
> ---
>  checkpolicy/checkmodule.c |  8 --------
>  checkpolicy/checkpolicy.c | 11 -----------
>  2 files changed, 19 deletions(-)
>
> diff --git a/checkpolicy/checkmodule.c b/checkpolicy/checkmodule.c
> index 46ce258f..8edc1f8c 100644
> --- a/checkpolicy/checkmodule.c
> +++ b/checkpolicy/checkmodule.c
> @@ -228,7 +228,6 @@ int main(int argc, char **argv)
>                 if (optind != argc)
>                         usage(argv[0]);
>         }
> -       printf("%s:  loading policy configuration from %s\n", argv[0],
> file);
>
>         /* Set policydb and sidtab used by libsepol service functions
>            to my structures, so that I can directly populate and
> @@ -302,8 +301,6 @@ int main(int argc, char **argv)
>
>         sepol_sidtab_destroy(&sidtab);
>
> -       printf("%s:  policy configuration loaded\n", argv[0]);
> -
>         if (outfile) {
>                 FILE *outfp = fopen(outfile, "w");
>
> @@ -313,16 +310,11 @@ int main(int argc, char **argv)
>                 }
>
>                 if (!cil) {
> -                       printf("%s:  writing binary representation
> (version %d) to %s\n",
> -                                  argv[0], policyvers, outfile);
> -
>                         if (write_binary_policy(&modpolicydb, outfp) != 0)
> {
>                                 fprintf(stderr, "%s:  error writing %s\n",
> argv[0], outfile);
>                                 exit(1);
>                         }
>                 } else {
> -                       printf("%s:  writing CIL to %s\n",argv[0],
> outfile);
> -
>                         if (sepol_module_policydb_to_cil(outfp,
> &modpolicydb, 0) != 0) {
>                                 fprintf(stderr, "%s:  error writing %s\n",
> argv[0], outfile);
>                                 exit(1);
> diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
> index fbda4558..12c4c405 100644
> --- a/checkpolicy/checkpolicy.c
> +++ b/checkpolicy/checkpolicy.c
> @@ -512,8 +512,6 @@ int main(int argc, char **argv)
>                 if (optind != argc)
>                         usage(argv[0]);
>         }
> -       printf("%s:  loading policy configuration from %s\n", argv[0],
> file);
> -
>         /* Set policydb and sidtab used by libsepol service functions
>            to my structures, so that I can directly populate and
>            manipulate them. */
> @@ -623,8 +621,6 @@ int main(int argc, char **argv)
>         if (policydb_load_isids(&policydb, &sidtab))
>                 exit(1);
>
> -       printf("%s:  policy configuration loaded\n", argv[0]);
> -
>         if (outfile) {
>                 outfp = fopen(outfile, "w");
>                 if (!outfp) {
> @@ -636,8 +632,6 @@ int main(int argc, char **argv)
>
>                 if (!cil) {
>                         if (!conf) {
> -                               printf("%s:  writing binary representation
> (version %d) to %s\n", argv[0], policyvers, outfile);
> -
>                                 policydb.policy_type = POLICY_KERN;
>
>                                 policy_file_init(&pf);
> @@ -645,8 +639,6 @@ int main(int argc, char **argv)
>                                 pf.fp = outfp;
>                                 ret = policydb_write(&policydb, &pf);
>                         } else {
> -                               printf("%s:  writing policy.conf to %s\n",
> -                                      argv[0], outfile);
>                                 ret = sepol_kernel_policydb_to_conf(outfp,
> policydbp);
>                         }
>                         if (ret) {
> @@ -655,7 +647,6 @@ int main(int argc, char **argv)
>                                 exit(1);
>                         }
>                 } else {
> -                       printf("%s:  writing CIL to %s\n",argv[0],
> outfile);
>                         if (binary) {
>                                 ret = sepol_kernel_policydb_to_cil(outfp,
> policydbp);
>                         } else {
> @@ -894,8 +885,6 @@ int main(int argc, char **argv)
>                         FGETS(ans, sizeof(ans), stdin);
>                         pathlen = strlen(ans);
>                         ans[pathlen - 1] = 0;
> -                       printf("%s:  loading policy configuration from
> %s\n",
> -                              argv[0], ans);
>                         fd = open(ans, O_RDONLY);
>                         if (fd < 0) {
>                                 fprintf(stderr, "Can't open '%s':  %s\n",
> --
> 2.19.0.397.gdd90340f6a-goog
>
> _______________________________________________
> Selinux mailing list
> Selinux@tycho.nsa.gov
> To unsubscribe, send email to Selinux-leave@tycho.nsa.gov.
> To get help, send an email containing "help" to
> Selinux-request@tycho.nsa.gov.
>

[-- Attachment #2: Type: text/html, Size: 7527 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-09-21 19:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-19 19:08 [PATCH] checkpolicy: remove extraneous policy build noise Nick Kralevich
2018-09-19 19:21 ` William Roberts
2018-09-19 19:38   ` Stephen Smalley
2018-09-19 19:41     ` William Roberts
2018-09-19 19:48       ` Stephen Smalley
2018-09-21 19:52 ` William Roberts

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.