aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2017-04-04 11:54:26 -0400
committerDavid Howells <dhowells@redhat.com>2017-04-20 07:02:32 -0400
commitb658e5d854d4e9015d83133a826ec734770deefb (patch)
treee2dfa8232fe3eabc071aedb5726121ac8ca08131
parentdf29840815a6aaa6a1ab8d85d7745a1a6fc25de0 (diff)
Annotate hardware config module parameters in drivers/net/hamradio/
When the kernel is running in secure boot mode, we lock down the kernel to prevent userspace from modifying the running kernel image. Whilst this includes prohibiting access to things like /dev/mem, it must also prevent access by means of configuring driver modules in such a way as to cause a device to access or modify the kernel image. To this end, annotate module_param* statements that refer to hardware configuration and indicate for future reference what type of parameter they specify. The parameter parser in the core sees this information and can skip such parameters with an error message if the kernel is locked down. The module initialisation then runs as normal, but just sees whatever the default values for those parameters is. Note that we do still need to do the module initialisation because some drivers have viable defaults set in case parameters aren't specified and some drivers support automatic configuration (e.g. PNP or PCI) in addition to manually coded parameters. This patch annotates drivers in drivers/net/hamradio/. Suggested-by: Alan Cox <gnomes@lxorguk.ukuu.org.uk> Signed-off-by: David Howells <dhowells@redhat.com> cc: Thomas Sailer <t.sailer@alumni.ethz.ch> cc: Joerg Reuter <jreuter@yaina.de> cc: linux-hams@vger.kernel.org cc: netdev@vger.kernel.org
-rw-r--r--drivers/net/hamradio/baycom_epp.c2
-rw-r--r--drivers/net/hamradio/baycom_par.c2
-rw-r--r--drivers/net/hamradio/baycom_ser_fdx.c4
-rw-r--r--drivers/net/hamradio/baycom_ser_hdx.c4
-rw-r--r--drivers/net/hamradio/dmascc.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/hamradio/baycom_epp.c b/drivers/net/hamradio/baycom_epp.c
index 594fa1407e29..1503f10122f7 100644
--- a/drivers/net/hamradio/baycom_epp.c
+++ b/drivers/net/hamradio/baycom_epp.c
@@ -1176,7 +1176,7 @@ static int iobase[NR_PORTS] = { 0x378, };
1176 1176
1177module_param_array(mode, charp, NULL, 0); 1177module_param_array(mode, charp, NULL, 0);
1178MODULE_PARM_DESC(mode, "baycom operating mode"); 1178MODULE_PARM_DESC(mode, "baycom operating mode");
1179module_param_array(iobase, int, NULL, 0); 1179module_param_hw_array(iobase, int, ioport, NULL, 0);
1180MODULE_PARM_DESC(iobase, "baycom io base address"); 1180MODULE_PARM_DESC(iobase, "baycom io base address");
1181 1181
1182MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu"); 1182MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
diff --git a/drivers/net/hamradio/baycom_par.c b/drivers/net/hamradio/baycom_par.c
index 809dc25909d1..92b13b39f426 100644
--- a/drivers/net/hamradio/baycom_par.c
+++ b/drivers/net/hamradio/baycom_par.c
@@ -481,7 +481,7 @@ static int iobase[NR_PORTS] = { 0x378, };
481 481
482module_param_array(mode, charp, NULL, 0); 482module_param_array(mode, charp, NULL, 0);
483MODULE_PARM_DESC(mode, "baycom operating mode; eg. par96 or picpar"); 483MODULE_PARM_DESC(mode, "baycom operating mode; eg. par96 or picpar");
484module_param_array(iobase, int, NULL, 0); 484module_param_hw_array(iobase, int, ioport, NULL, 0);
485MODULE_PARM_DESC(iobase, "baycom io base address"); 485MODULE_PARM_DESC(iobase, "baycom io base address");
486 486
487MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu"); 487MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
diff --git a/drivers/net/hamradio/baycom_ser_fdx.c b/drivers/net/hamradio/baycom_ser_fdx.c
index ebc06822fd4d..d9a646acca20 100644
--- a/drivers/net/hamradio/baycom_ser_fdx.c
+++ b/drivers/net/hamradio/baycom_ser_fdx.c
@@ -614,9 +614,9 @@ static int baud[NR_PORTS] = { [0 ... NR_PORTS-1] = 1200 };
614 614
615module_param_array(mode, charp, NULL, 0); 615module_param_array(mode, charp, NULL, 0);
616MODULE_PARM_DESC(mode, "baycom operating mode; * for software DCD"); 616MODULE_PARM_DESC(mode, "baycom operating mode; * for software DCD");
617module_param_array(iobase, int, NULL, 0); 617module_param_hw_array(iobase, int, ioport, NULL, 0);
618MODULE_PARM_DESC(iobase, "baycom io base address"); 618MODULE_PARM_DESC(iobase, "baycom io base address");
619module_param_array(irq, int, NULL, 0); 619module_param_hw_array(irq, int, irq, NULL, 0);
620MODULE_PARM_DESC(irq, "baycom irq number"); 620MODULE_PARM_DESC(irq, "baycom irq number");
621module_param_array(baud, int, NULL, 0); 621module_param_array(baud, int, NULL, 0);
622MODULE_PARM_DESC(baud, "baycom baud rate (300 to 4800)"); 622MODULE_PARM_DESC(baud, "baycom baud rate (300 to 4800)");
diff --git a/drivers/net/hamradio/baycom_ser_hdx.c b/drivers/net/hamradio/baycom_ser_hdx.c
index 60fcf512c208..f1c8a9ff3891 100644
--- a/drivers/net/hamradio/baycom_ser_hdx.c
+++ b/drivers/net/hamradio/baycom_ser_hdx.c
@@ -642,9 +642,9 @@ static int irq[NR_PORTS] = { 4, };
642 642
643module_param_array(mode, charp, NULL, 0); 643module_param_array(mode, charp, NULL, 0);
644MODULE_PARM_DESC(mode, "baycom operating mode; * for software DCD"); 644MODULE_PARM_DESC(mode, "baycom operating mode; * for software DCD");
645module_param_array(iobase, int, NULL, 0); 645module_param_hw_array(iobase, int, ioport, NULL, 0);
646MODULE_PARM_DESC(iobase, "baycom io base address"); 646MODULE_PARM_DESC(iobase, "baycom io base address");
647module_param_array(irq, int, NULL, 0); 647module_param_hw_array(irq, int, irq, NULL, 0);
648MODULE_PARM_DESC(irq, "baycom irq number"); 648MODULE_PARM_DESC(irq, "baycom irq number");
649 649
650MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu"); 650MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
diff --git a/drivers/net/hamradio/dmascc.c b/drivers/net/hamradio/dmascc.c
index 2479072981a1..dec6b76bc0fb 100644
--- a/drivers/net/hamradio/dmascc.c
+++ b/drivers/net/hamradio/dmascc.c
@@ -274,7 +274,7 @@ static unsigned long rand;
274 274
275MODULE_AUTHOR("Klaus Kudielka"); 275MODULE_AUTHOR("Klaus Kudielka");
276MODULE_DESCRIPTION("Driver for high-speed SCC boards"); 276MODULE_DESCRIPTION("Driver for high-speed SCC boards");
277module_param_array(io, int, NULL, 0); 277module_param_hw_array(io, int, ioport, NULL, 0);
278MODULE_LICENSE("GPL"); 278MODULE_LICENSE("GPL");
279 279
280static void __exit dmascc_exit(void) 280static void __exit dmascc_exit(void)