RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1414035 - [RFE] npm plugin should collect npm configuration
Summary: [RFE] npm plugin should collect npm configuration
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: sos
Version: 7.3
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: rc
: ---
Assignee: Pavel Moravec
QA Contact: Miroslav Hradílek
URL: https://github.com/sosreport/sos/pull...
Whiteboard:
Depends On:
Blocks: 1414036
TreeView+ depends on / blocked
 
Reported: 2017-01-17 15:11 UTC by Miroslav Hradílek
Modified: 2017-08-01 23:08 UTC (History)
7 users (show)

Fixed In Version: sos-3.4-1.el7
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 1414036 (view as bug list)
Environment:
Last Closed: 2017-08-01 23:08:12 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2017:2203 0 normal SHIPPED_LIVE sos bug fix and enhancement update 2017-08-01 19:41:56 UTC

Description Miroslav Hradílek 2017-01-17 15:11:15 UTC
Description of problem:
Currently npm plugin does not collect npm configuration and npmrc files. It would be useful to know how npm is configured globally and what user and project specific modifications were taken.

For example whether user is using different registry would be good to know.

I believe collecting output of this command "npm config list -l" would suffice.

Version-Release number of selected component (if applicable):
sos-3.3-5.el7_3.noarch


Actual results:
No npm configuration information is collected.

Expected results:
Output of "npm config list -l" is collected.

Additional info:
It should call the command when project is specified to pick up project specific changes made in project npmrc or package.json.

Comment 1 Pavel Moravec 2017-01-18 08:26:00 UTC
I am bit confused now.

Per my understanding from [1], "npm config list -l" shows all the config settings in a long format. Sounds reasonable to collect (cant there be a secret information we should obfuscate?).

> It should call the command when project is specified to pick up project specific changes made in project npmrc or package.json.

So there shall be a trigger / condition before the command execution? Or shall be the npm config list executed every time?


[1] https://docs.npmjs.com/cli/config

Comment 2 Miroslav Hradílek 2017-01-18 10:29:04 UTC
> So there shall be a trigger / condition before the command execution? Or shall be the npm config list executed every time?

Currently in the plugin "npm ls -g" is collected every time as "npm-ls-global" and if project path is specified "npm ls" within project directory is collected in addition as "npm-ls-project".

I would mirror this behavior and called "npm config list -l" every time and called the same command within project directory if specified. There will be redundant data but the projject directory variant will contain the project specific changes if there were any.

> cant there be a secret information we should obfuscate?

Good idea. I need to investigate this, not sure where npm repository credentials for uploading packages are stored.

Comment 4 Miroslav Hradílek 2017-01-18 14:09:05 UTC
So I tried to login to the repository and I was required to provide credentials every time. This created auth token in my ~/.npmrc which is hidden from "mpm config ls -l".

Documentation refered to some old repositories with different auth that stores credentials. I could not find the npmrc entries documented but i found this for example
https://github.com/npm/npm/issues/1300#issuecomment-1886999

Those credentials should be omitted from "npm config ls" anyway. I tried to inject "_auth = bnBtOm5wbQ==" in my .npmrc and it was ignored by "npm config ls" while it was consumed by "npm login" prefilling the credentials.

Bottom line: I guess that nothing sensitive should be contained in "npm config ls -l"

Comment 5 Pavel Moravec 2017-01-19 20:20:31 UTC
OK thanks. So a patch like:

diff --git a/sos/plugins/npm.py b/sos/plugins/npm.py
index 634325f..dcba164 100644
--- a/sos/plugins/npm.py
+++ b/sos/plugins/npm.py
@@ -90,7 +90,11 @@ class Npm(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin, SuSEPlugin):
                 self.get_option("project_path")))
             self._get_npm_output("npm ls --json", "npm-ls-project",
                                  working_directory=project_path)
+            self._get_npm_output("npm config list -l", "npm-config-list-project",
+                                 working_directory=project_path)
+
         self._get_npm_output("npm ls -g --json", "npm-ls-global")
+        self._get_npm_output("npm config list -l", "npm-config-list-global")
         self._find_modules_in_npm_cache()
 

correct?

(maybe shorten npm-config-list-* to npm-config-* ?)

Comment 6 Miroslav Hradílek 2017-01-20 07:17:16 UTC
Yep. "ls" is a valid abbreviation so it could be "npm-config-ls" but I would keep the full form for clarity.

Thanks Pavel.

Comment 7 Bryn M. Reeves 2017-01-20 10:46:54 UTC
Normally files in sos_commands use '_' as the 'space replacement', and '-' is only used when it appears in option strings.

The names chosen should be as desired for the component being collected (so 'npm_config_list_*' is fine), but they should conform to the normal formatting so as not to confuse automated report parsers.

Comment 8 Pavel Moravec 2017-01-21 11:30:15 UTC
(In reply to Bryn M. Reeves from comment #7)
> Normally files in sos_commands use '_' as the 'space replacement', and '-'
> is only used when it appears in option strings.
> 
> The names chosen should be as desired for the component being collected (so
> 'npm_config_list_*' is fine), but they should conform to the normal
> formatting so as not to confuse automated report parsers.

https://github.com/sosreport/sos/pull/917 created.

Mirek, pls. comment in the PR or here if you wish the output files shall have '_' instead of '-' in their names, and if so I will update the PR accordingly.

Comment 9 Miroslav Hradílek 2017-01-23 11:13:21 UTC
It does not matter to me. It can be separated with underscores. I was just copying the format used for currently collected commands.

Whether you are supposed to change the old commands too is up to the original reporters.

Comment 10 Pavel Moravec 2017-03-12 21:49:25 UTC
POSTed to upstream in  	581277b

Comment 13 errata-xmlrpc 2017-08-01 23:08:12 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2017:2203


Note You need to log in before you can comment on or make changes to this bug.