Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
121448: cli: adding column redaction to selected system and crdb_internal tables r=kousiknath a=kousiknath

DB dump tables contain un-redacted information which might contain crucial customer
data like hostname / ip addresses etc. Some of these table data is served to debug zip
through APIs. But many self hosted customers would not like to pass these information
out of their network. This PR solves this issue and introduces un-redacted query
support for few of such tables.

Epic: https://cockroachlabs.atlassian.net/browse/CRDB-19369
Release note: None

Co-authored-by: kousiknath <[email protected]>
  • Loading branch information
craig[bot] and kousiknath committed May 9, 2024
2 parents 5d0b4da + f0c6f0a commit c6b012b
Showing 1 changed file with 87 additions and 52 deletions.
139 changes: 87 additions & 52 deletions pkg/cli/zip_table_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,28 +500,32 @@ var zipInternalTablesPerCluster = DebugZipTableRegistry{
"crdb_internal.kv_node_status": {
// `env` column can contain sensitive node environment variable values,
// such as AWS_ACCESS_KEY.
nonSensitiveCols: NonSensitiveColumns{
"node_id",
"network",
"address",
"attrs",
"locality",
"server_version",
"go_version",
"tag",
"time",
"revision",
"cgo_compiler",
"platform",
"distribution",
"type",
"dependencies",
"started_at",
"updated_at",
"metrics",
"args",
"activity",
},
// Some fields are marked as `<redacted>` because we want to redact hostname, ip address and other sensitive fields
// in the db dump files contained in debugzip
customQueryRedacted: `SELECT
"node_id",
"network",
'<redacted>' as address,
"attrs",
"locality",
"server_version",
"go_version",
"tag",
"time",
"revision",
"cgo_compiler",
"platform",
"distribution",
"type",
"dependencies",
"started_at",
"updated_at",
"metrics",
'<redacted>' as args,
'<redacted>' as env,
"activity"
FROM crdb_internal.kv_node_status
`,
},
"crdb_internal.kv_store_status": {
nonSensitiveCols: NonSensitiveColumns{
Expand Down Expand Up @@ -718,10 +722,25 @@ var zipInternalTablesPerNode = DebugZipTableRegistry{
"crdb_internal.gossip_nodes": {
// `cluster_name` is hashed as we only care to see whether values are
// identical across nodes.
// Some fields are marked as `<redacted>` because we want to redact hostname, ip address and other sensitive fields
// in the db dump files contained in debugzip
customQueryRedacted: `SELECT
node_id, network, address, advertise_address, sql_network, sql_address,
advertise_sql_address, attrs, locality, fnv32(cluster_name) as cluster_name,
server_version, build_tag, started_at, is_live, ranges, leases
node_id,
network,
'<redacted>' as address,
'<redacted>' as advertise_address,
sql_network,
'<redacted>' as sql_address,
'<redacted>' as advertise_sql_address,
attrs,
'<redacted>' as locality,
fnv32(cluster_name) as cluster_name,
server_version,
build_tag,
started_at,
is_live,
ranges,
leases
FROM crdb_internal.gossip_nodes`,
},
"crdb_internal.leases": {
Expand Down Expand Up @@ -848,12 +867,24 @@ var zipInternalTablesPerNode = DebugZipTableRegistry{
},
},
"crdb_internal.node_runtime_info": {
nonSensitiveCols: NonSensitiveColumns{
"node_id",
"component",
"field",
"value",
},
// Some fields are marked as `<redacted>` because we want to redact hostname, ip address and other sensitive fields
// in the db dump files contained in debugzip
customQueryRedacted: `SELECT * FROM (
SELECT
"node_id",
"component",
"field",
"value"
FROM crdb_internal.node_runtime_info
WHERE field NOT IN ('URL', 'Host', 'URI') UNION
SELECT
"node_id",
"component",
"field",
'<redacted>' AS value
FROM crdb_internal.node_runtime_info
WHERE field IN ('URL', 'Host', 'URI')
) ORDER BY node_id`,
},
"crdb_internal.node_sessions": {
// `client_address` contains unredacted client IP addresses.
Expand Down Expand Up @@ -1074,17 +1105,17 @@ var zipInternalTablesPerNode = DebugZipTableRegistry{

/**
* NB: The following system tables explicitly forbidden:
* - system.users: avoid downloading passwords.
* - system.web_sessions: avoid downloading active session tokens.
* - system.join_tokens: avoid downloading secret join keys.
* - system.comments: avoid downloading noise from SQL schema.
* - system.ui: avoid downloading noise from UI customizations.
* - system.zones: the contents of crdb_internal.zones is easier to use.
* - system.statement_bundle_chunks: avoid downloading a large table that's
* - system.users: avoid downloading passwords.
* - system.web_sessions: avoid downloading active session tokens.
* - system.join_tokens: avoid downloading secret join keys.
* - system.comments: avoid downloading noise from SQL schema.
* - system.ui: avoid downloading noise from UI customizations.
* - system.zones: the contents of crdb_internal.zones is easier to use.
* - system.statement_bundle_chunks: avoid downloading a large table that's
* hard to interpret currently.
* - system.statement_statistics: historical data, usually too much to
* - system.statement_statistics: historical data, usually too much to
* download.
* - system.transaction_statistics: ditto
* - system.transaction_statistics: ditto
* - system.statement_activity: ditto
* - system.transaction_activity: ditto
*
Expand Down Expand Up @@ -1304,15 +1335,15 @@ var zipSystemTables = DebugZipTableRegistry{
"system.settings": {
customQueryUnredacted: `SELECT * FROM system.settings`,
customQueryRedacted: `SELECT * FROM (
SELECT *
FROM system.settings
WHERE "valueType" <> 's'
SELECT *
FROM system.settings
WHERE "valueType" <> 's'
) UNION (
SELECT name, '<redacted>' as value,
"lastUpdated",
"valueType"
FROM system.settings
WHERE "valueType" = 's'
SELECT name, '<redacted>' as value,
"lastUpdated",
"valueType"
FROM system.settings
WHERE "valueType" = 's'
)`,
},
"system.span_configurations": {
Expand All @@ -1329,12 +1360,16 @@ var zipSystemTables = DebugZipTableRegistry{
},
},
"system.sql_instances": {
nonSensitiveCols: NonSensitiveColumns{
// Some fields are marked as `<redacted>` because we want to redact hostname, ip address and other sensitive fields
// in the db dump files contained in debugzip
customQueryRedacted: `SELECT
"id",
"addr",
'<redacted>' as addr,
"session_id",
"locality",
},
'<redacted>' as locality,
'<redacted>' as sql_addr
FROM system.sql_instances
`,
},
// system.sql_stats_cardinality shows row counts for all of the system tables related to the SQL Stats
// system, grouped by aggregated timestamp. None of this information is sensitive. It aids in escalations
Expand Down

0 comments on commit c6b012b

Please sign in to comment.