From: Hannes Reinecke <hare@suse.de>
To: "Elliott, Robert (Server Storage)" <Elliott@hp.com>,
James Bottomley <jbottomley@parallels.com>
Cc: Christoph Hellwig <hch@infradead.org>,
Ewan Milne <emilne@redhat.com>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>
Subject: Re: [PATCH 10/10] scsi: Do not display buffer pointers in scsi_log_send()
Date: Mon, 17 Nov 2014 10:14:20 +0100 [thread overview]
Message-ID: <5469BC6C.3070601@suse.de> (raw)
In-Reply-To: <94D0CD8314A33A4D9D801C0FE68B4029593A8697@G9W0745.americas.hpqcorp.net>
On 11/14/2014 11:53 PM, Elliott, Robert (Server Storage) wrote:
>
>
>> -----Original Message-----
>> From: Hannes Reinecke [mailto:hare@suse.de]
>> Sent: Thursday, 06 November, 2014 2:31 AM
>> To: James Bottomley
>> Cc: Christoph Hellwig; Ewan Milne; Elliott, Robert (Server Storage);
>> linux-scsi@vger.kernel.org; Hannes Reinecke
>> Subject: [PATCH 10/10] scsi: Do not display buffer pointers in
>> scsi_log_send()
>>
>> scsi_log_send() would display buffer pointer for higher
>> logging levels. This is not only of questionable value
>> but also exposes kernel pointer to userspace, which is
>> discouraged in some setups. So drop this message
>> altogether.
>>
>> Signed-off-by: Hannes Reinecke <hare@suse.de>
>> ---
>> drivers/scsi/scsi.c | 9 +--------
>> 1 file changed, 1 insertion(+), 8 deletions(-)
>>
>> diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c
>> index 92d5912..9ec576d 100644
>> --- a/drivers/scsi/scsi.c
>> +++ b/drivers/scsi/scsi.c
>> @@ -531,7 +531,7 @@ void scsi_log_send(struct scsi_cmnd *cmd)
>> *
>> * 3: same as 2
>> *
>> - * 4: same as 3 plus dump extra junk
>> + * 4: same as 3
>> */
>> if (unlikely(scsi_logging_level)) {
>> level = SCSI_LOG_LEVEL(SCSI_LOG_MLQUEUE_SHIFT,
>> @@ -540,13 +540,6 @@ void scsi_log_send(struct scsi_cmnd *cmd)
>> scmd_printk(KERN_INFO, cmd,
>> "Send: scmd 0x%p\n", cmd);
>> scsi_print_command(cmd);
>> - if (level > 3) {
>> - printk(KERN_INFO "buffer = 0x%p, bufflen =
>> %d,"
>> - " queuecommand 0x%p\n",
>> - scsi_sglist(cmd), scsi_bufflen(cmd),
>> - cmd->device->host->hostt-
>>> queuecommand);
>> -
>> - }
>> }
>> }
>> }
>
> Reviewed-by: Robert Elliott <elliott@hp.com>
>
> One more comment on the series:
>
> After the tags, there are still a few scmd %p prints left
> including the one above. Is this series supposed to get
> rid of the rest of them?
>
> drivers/scsi/scsi.c: "Send: scmd 0x%p\n", cmd);
> drivers/scsi/scsi_error.c: "scmd %p eh timeout, not aborting\n",
> drivers/scsi/scsi_error.c: "aborting command %p\n", scmd));
> drivers/scsi/scsi_error.c: "scmd %p eh timeout, "
> drivers/scsi/scsi_error.c: "scmd %p retry "
> drivers/scsi/scsi_error.c: "scmd %p finish "
> drivers/scsi/scsi_error.c: "scmd %p abort %s\n", scmd,
> drivers/scsi/scsi_error.c: "scmd %p terminate "
> drivers/scsi/scsi_error.c: "scmd %p previous abort failed\n", scmd));
> drivers/scsi/scsi_error.c: "scmd %p not aborting, host in recovery\n",
> drivers/scsi/scsi_error.c: "scmd %p abort scheduled\n", scmd));
> drivers/scsi/scsi_error.c: "%s scmd: %p result: %x\n",
> drivers/scsi/scsi_error.c: "%s: scmd: %p, timeleft: %ld\n",
> drivers/scsi/scsi_error.c: "sense requested for %p result %x\n",
> drivers/scsi/scsi_error.c: "%s: scmd %p rtn %x\n", __func__, scmd, rtn));
> drivers/scsi/scsi_error.c: "%s: flush retry cmd: %p\n",
> drivers/scsi/scsi_error.c: "%s: flush finish cmd: %p\n",
> drivers/scsi/scsi_lib.c: "Inserting command %p into mlqueue\n", cmd));
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s no slave_alloc function in hostt %p\n", __func__, shost->hostt);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "sdev %p scmd %p sending INQUIRY\n", sdev, scsi_cmd);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s sdev %p from lookup_by_target\n", __func__, sdev);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s sdev %p from alloc_sdev\n", __func__, sdev);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s sdev %p from alloc_sdev\n", __func__, sdev);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s sdev %p from lookup_by_target\n", __func__, sdev);
> drivers/scsi/scsi_scan.c: printk(KERN_WARNING "%s sdev %p from alloc_sdev\n", __func__, sdev);
>
Ideally, yes. However, for this to work we need an additional means
of identifying the command uniquely.
With the current infrastructure 'tags' are only ever assigned for
devices using the SCSI TCQ mechanism. Everything else is left in the
dark, even though it might be allowing for a queue depths > 1.
So I'll need to revisit this now that the tag rework from Christoph
Hellwig is in.
But I'd rather have this postponed to a next patch series. That
series would also included the proposed 'SUCCESS' to 'COMPLETE' change.
Cheers,
Hannes
--
Dr. Hannes Reinecke zSeries & Storage
hare@suse.de +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: J. Hawn, J. Guild, F. Imendörffer, HRB 21284 (AG Nürnberg)
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2014-11-17 9:14 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-06 8:30 [PATCHv2 00/10] scsi logging update: the real thing Hannes Reinecke
2014-11-06 8:30 ` [PATCH 01/10] scsi: Rename SERVICE_ACTION_IN to SERVICE_ACTION_IN_16 Hannes Reinecke
2014-11-14 16:10 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 02/10] scsi: Add SPC-3 command definitions Hannes Reinecke
2014-11-12 17:07 ` Elliott, Robert (Server Storage)
2014-11-17 7:56 ` Hannes Reinecke
2014-11-06 8:30 ` [PATCH 03/10] scsi: Implement per-cpu logging buffer Hannes Reinecke
2014-11-13 2:22 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 04/10] scsi: log request tag for scmd_printk() Hannes Reinecke
2014-11-12 17:18 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 05/10] scsi: use external buffer for command logging Hannes Reinecke
2014-11-13 2:24 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 06/10] libata: use __scsi_format_command() Hannes Reinecke
2014-11-14 16:02 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 07/10] scsi: use per-cpu buffer for formatting sense Hannes Reinecke
2014-11-14 16:52 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 08/10] scsi: use per-cpu buffer for formatting scsi_print_result() Hannes Reinecke
2014-11-14 22:20 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 09/10] scsi: Conditionally compile in constants.c Hannes Reinecke
2014-11-14 22:40 ` Elliott, Robert (Server Storage)
2014-11-06 8:30 ` [PATCH 10/10] scsi: Do not display buffer pointers in scsi_log_send() Hannes Reinecke
2014-11-14 22:53 ` Elliott, Robert (Server Storage)
2014-11-17 9:14 ` Hannes Reinecke [this message]
2014-11-14 22:59 ` [PATCHv2 00/10] scsi logging update: the real thing Elliott, Robert (Server Storage)
-- strict thread matches above, loose matches on Subject: below --
2014-11-17 13:25 [PATCHv3 " Hannes Reinecke
2014-11-17 13:25 ` [PATCH 10/10] scsi: Do not display buffer pointers in scsi_log_send() Hannes Reinecke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5469BC6C.3070601@suse.de \
--to=hare@suse.de \
--cc=Elliott@hp.com \
--cc=emilne@redhat.com \
--cc=hch@infradead.org \
--cc=jbottomley@parallels.com \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.