lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230627162146.GA114473@dev-arch.thelio-3990X>
Date: Tue, 27 Jun 2023 09:21:46 -0700
From: Nathan Chancellor <nathan@...nel.org>
To: Rahul Rameshbabu <rrameshbabu@...dia.com>
Cc: netdev@...r.kernel.org, Gal Pressman <gal@...dia.com>,
	Saeed Mahameed <saeed@...nel.org>, Tariq Toukan <tariqt@...dia.com>,
	Jakub Kicinski <kuba@...nel.org>,
	Richard Cochran <richardcochran@...il.com>,
	Jacob Keller <jacob.e.keller@...el.com>,
	Paolo Abeni <pabeni@...hat.com>,
	"David S. Miller" <davem@...emloft.net>,
	Shuah Khan <shuah@...nel.org>,
	Maciek Machnikowski <maciek@...hnikowski.net>
Subject: Re: [PATCH v3 5/9] ptp: Add .getmaxphase callback to ptp_clock_info

Hi Rahul,

On Mon, Jun 12, 2023 at 02:14:56PM -0700, Rahul Rameshbabu wrote:
> Enables advertisement of the maximum offset supported by the phase control
> functionality of PHCs. The callback is used to return an error if an offset
> not supported by the PHC is used in ADJ_OFFSET. The ioctls
> PTP_CLOCK_GETCAPS and PTP_CLOCK_GETCAPS2 now advertise the maximum offset a
> PHC's phase control functionality is capable of supporting. Introduce new
> sysfs node, max_phase_adjustment.
> 
> Cc: Jakub Kicinski <kuba@...nel.org>
> Cc: Shuah Khan <shuah@...nel.org>
> Cc: Richard Cochran <richardcochran@...il.com>
> Cc: Maciek Machnikowski <maciek@...hnikowski.net>
> Signed-off-by: Rahul Rameshbabu <rrameshbabu@...dia.com>
> Acked-by: Richard Cochran <richardcochran@...il.com>

<snip>

> diff --git a/drivers/ptp/ptp_sysfs.c b/drivers/ptp/ptp_sysfs.c
> index f30b0a439470..77219cdcd683 100644
> --- a/drivers/ptp/ptp_sysfs.c
> +++ b/drivers/ptp/ptp_sysfs.c
> @@ -18,6 +18,17 @@ static ssize_t clock_name_show(struct device *dev,
>  }
>  static DEVICE_ATTR_RO(clock_name);
>  
> +static ssize_t max_phase_adjustment_show(struct device *dev,
> +					 struct device_attribute *attr,
> +					 char *page)
> +{
> +	struct ptp_clock *ptp = dev_get_drvdata(dev);
> +
> +	return snprintf(page, PAGE_SIZE - 1, "%d\n",
> +			ptp->info->getmaxphase(ptp->info));

I am seeing a crash when accessing this sysfs node, which I initially
found by running LTP's read_all test case.

# cat /sys/class/ptp/ptp0/max_phase_adjustment
fish: Job 1, 'cat /sys/class/ptp/ptp0/max_pha…' terminated by signal SIGKILL (Forced quit)

# dmesg
[  133.104459] BUG: kernel NULL pointer dereference, address: 0000000000000000
[  133.104472] #PF: supervisor instruction fetch in kernel mode
[  133.104478] #PF: error_code(0x0010) - not-present page
[  133.104483] PGD 0 P4D 0 
[  133.104490] Oops: 0010 [#2] PREEMPT SMP NOPTI
[  133.104498] CPU: 13 PID: 2705 Comm: cat Tainted: G      D            6.4.0-rc6-debug-01344-gc3b60ab7a4df #1 d68962f26eeefb0e64d3dd104c3eef4a1ac5b0d5
[  133.104508] Hardware name: ASUS System Product Name/PRIME Z590M-PLUS, BIOS 1203 10/27/2021
[  133.104512] RIP: 0010:0x0
[  133.104563] Code: Unable to access opcode bytes at 0xffffffffffffffd6.
[  133.104567] RSP: 0018:ffffbc38c5e2fdb8 EFLAGS: 00010286
[  133.104574] RAX: 0000000000000000 RBX: ffff9e3fc8e62000 RCX: ffffffffbb386100
[  133.104579] RDX: ffff9e3fc8e62000 RSI: ffffffffbb386100 RDI: ffff9e3fc43ef968
[  133.104583] RBP: ffffffffba7795b0 R08: ffff9e3fd106c0f0 R09: ffff9e3fd10418c0
[  133.104587] R10: ffff9e3fc8e62000 R11: 0000000000000000 R12: ffffbc38c5e2fe88
[  133.104590] R13: ffffbc38c5e2fe60 R14: 0000000000000001 R15: ffffbc38c5e2fef8
[  133.104594] FS:  00007f24dc5e5740(0000) GS:ffff9e46ff740000(0000) knlGS:0000000000000000
[  133.104600] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  133.104605] CR2: ffffffffffffffd6 CR3: 0000000104352001 CR4: 0000000000770ee0
[  133.104610] PKRU: 55555554
[  133.104613] Call Trace:
[  133.104617]  <TASK>
[  133.104622]  ? __die+0x23/0x70
[  133.104632]  ? page_fault_oops+0x171/0x4e0
[  133.104641]  ? exc_page_fault+0x7f/0x180
[  133.104649]  ? asm_exc_page_fault+0x26/0x30
[  133.104662]  ? seq_read_iter+0x375/0x480
[  133.104670]  max_phase_adjustment_show+0x1e/0x40
[  133.104680]  dev_attr_show+0x19/0x60
[  133.104692]  sysfs_kf_seq_show+0xa8/0x100
[  133.104703]  seq_read_iter+0x120/0x480
[  133.104711]  vfs_read+0x1f3/0x320
[  133.104721]  ksys_read+0x6f/0xf0
[  133.104730]  do_syscall_64+0x5d/0x90
[  133.104741]  entry_SYSCALL_64_after_hwframe+0x72/0xdc
[  133.104750] RIP: 0033:0x7f24dc6e1b21
[  133.104763] Code: c5 fe ff ff 50 48 8d 3d 25 7d 0a 00 e8 e8 11 02 00 0f 1f 84 00 00 00 00 00 f3 0f 1e fa 80 3d dd 99 0e 00 00 74 13 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 57 c3 66 0f 1f 44 00 00 48 83 ec 28 48 89 54
[  133.104769] RSP: 002b:00007ffea4af1b88 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
[  133.104776] RAX: ffffffffffffffda RBX: 0000000000020000 RCX: 00007f24dc6e1b21
[  133.104780] RDX: 0000000000020000 RSI: 00007f24dc5c4000 RDI: 0000000000000003
[  133.104784] RBP: 0000000000020000 R08: 00000000ffffffff R09: 0000000000000000
[  133.104788] R10: 0000000000000022 R11: 0000000000000246 R12: 00007f24dc5c4000
[  133.104792] R13: 0000000000000003 R14: 0000000000020000 R15: 0000000000000000
[  133.104799]  </TASK>
[  133.104801] Modules linked in: overlay xt_mark snd_seq_dummy snd_hrtimer snd_seq snd_seq_device tun hid_logitech_hidpp mousedev joydev xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT nf_reject_ipv4 xt_tcpudp nft_compat nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables nfnetlink bridge stp llc hid_logitech_dj hid_razer snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic vfat fat snd_sof_pci_intel_tgl snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof_intel_hda_mlink intel_rapl_msr snd_sof_intel_hda intel_rapl_common i915 snd_sof snd_sof_utils snd_hda_ext_core x86_pkg_temp_thermal snd_soc_acpi_intel_match intel_powerclamp snd_soc_acpi coretemp snd_soc_core kvm_intel i2c_algo_bit snd_compress drm_buddy snd_hda_intel kvm snd_intel_dspcfg eeepc_wmi intel_gtt irqbypass crct10dif_pclmul drm_display_helper crc32_pclmul snd_hda_codec asus_wmi polyval_clmulni mei_hdcp polyval_generic snd_hwdep ledtrig_audio mei_pxp iTCO_wdt gf128mul drm_kms_helper
[  133.104921]  ghash_clmulni_intel sparse_keymap intel_pmc_bxt snd_hda_core sha512_ssse3 syscopyarea platform_profile iTCO_vendor_support rfkill ee1004 aesni_intel wmi_bmof crypto_simd cryptd snd_pcm sysfillrect intel_cstate sysimgblt mei_me snd_timer spi_nor intel_uncore i2c_i801 e1000e snd intel_lpss_pci cec mtd pcspkr mei intel_lpss soundcore i2c_smbus ttm idma64 video wmi acpi_tad acpi_pad usbhid mac_hid pkcs8_key_parser dm_multipath drm crypto_user fuse dm_mod loop zram bpf_preload ip_tables x_tables nvme spi_intel_pci nvme_core xhci_pci spi_intel xhci_pci_renesas nvme_common btrfs blake2b_generic libcrc32c crc32c_generic crc32c_intel xor raid6_pq
[  133.105024] CR2: 0000000000000000
[  133.105029] ---[ end trace 0000000000000000 ]---
[  133.105033] RIP: 0010:0x0
[  133.105046] Code: Unable to access opcode bytes at 0xffffffffffffffd6.
[  133.105049] RSP: 0018:ffffbc38c5aafce0 EFLAGS: 00010286
[  133.105054] RAX: 0000000000000000 RBX: ffff9e3ffdfe5000 RCX: ffffffffbb386100
[  133.105058] RDX: ffff9e3ffdfe5000 RSI: ffffffffbb386100 RDI: ffff9e3fc43ef968
[  133.105062] RBP: ffffffffba7795b0 R08: ffff9e3fd106c0f0 R09: ffff9e3fc4d8fc80
[  133.105065] R10: ffff9e3ffdfe5000 R11: 0000000000000000 R12: ffffbc38c5aafdb0
[  133.105069] R13: ffffbc38c5aafd88 R14: 0000000000000001 R15: ffffbc38c5aafe20
[  133.105072] FS:  00007f24dc5e5740(0000) GS:ffff9e46ff740000(0000) knlGS:0000000000000000
[  133.105077] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  133.105081] CR2: ffffffffffffffd6 CR3: 0000000104352001 CR4: 0000000000770ee0
[  133.105085] PKRU: 55555554
[  133.105088] note: cat[2705] exited with irqs disabled

This was also reported at [1], I apologize for the duplicate report but
it does not seem like there has been any movement on this from what I
can tell.

If there is any additional information I can provide or patches I can
test, please let me know.

> +}
> +static DEVICE_ATTR_RO(max_phase_adjustment);
> +
>  #define PTP_SHOW_INT(name, var)						\
>  static ssize_t var##_show(struct device *dev,				\
>  			   struct device_attribute *attr, char *page)	\
> @@ -309,6 +320,7 @@ static struct attribute *ptp_attrs[] = {
>  	&dev_attr_clock_name.attr,
>  
>  	&dev_attr_max_adjustment.attr,
> +	&dev_attr_max_phase_adjustment.attr,
>  	&dev_attr_n_alarms.attr,
>  	&dev_attr_n_external_timestamps.attr,
>  	&dev_attr_n_periodic_outputs.attr,

[1]: https://lore.kernel.org/89dfc918-9757-4487-aa72-615f7029f6c1@app.fastmail.com/

Cheers,
Nathan

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ