From: sashiko-bot@kernel.org
To: "Kamal Wadhwa" <kamal.wadhwa@oss.qualcomm.com>
Cc: "Alexandre Belloni" <alexandre.belloni@bootlin.com>,
robh@kernel.org, devicetree@vger.kernel.org, conor+dt@kernel.org,
linux-rtc@vger.kernel.org
Subject: Re: [PATCH 2/2] rtc: qcom: rtc-glink: Add PMIC GLINK RTC driver and extend pmic_glink
Date: Thu, 06 Aug 2026 21:09:33 +0000 [thread overview]
Message-ID: <20260806210934.485441F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260807-rtc-glink-cleanup-v1-2-7801e4d69c4f@oss.qualcomm.com>
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
- [High] Racy cancellation of alarm_work and incorrect devres teardown order causes Use-After-Free on driver unbind and probe failure.
- [High] The callback extracts the property ID instead of the property value for GET_PROPERTY responses, returning the property ID as the time or alarm value.
- [High] A timeout in `qcom_rtc_glink_request` leaves the request-response state machine out of sync, allowing late firmware responses to hijack subsequent requests.
- [High] Corrupted time and alarm calculations via contradictory fallback usage of QCOM_RTC_GLINK_TIME and implicit 64-bit integer promotion.
--
--- Patch [2]: [PATCH 2/2] rtc: qcom: rtc-glink: Add PMIC GLINK RTC driver and extend pmic_glink ---
commit 453a7a32b4bd6fbb186e249935eb4448bc3ddd38
Author: Kamal Wadhwa <kamal.wadhwa@oss.qualcomm.com>
Subject: rtc: qcom: rtc-glink: Add PMIC GLINK RTC driver and extend pmic_glink
Add a new RTC driver that communicates with the PMIC firmware over the
GLINK transport layer. It supports reading time and alarm functionality via
GET_PROPERTY and SET_PROPERTY opcodes.
> diff --git a/drivers/rtc/rtc-qcom-glink.c b/drivers/rtc/rtc-qcom-glink.c
> new file mode 100644
> index 0000000000000..611f06a3cc5ca
> --- /dev/null
> +++ b/drivers/rtc/rtc-qcom-glink.c
> @@ -0,0 +1,690 @@
[ ... ]
> +static int qcom_rtc_glink_request(struct qcom_rtc_glink *rtc_glink,
> + void *data, size_t len)
> +{
> + unsigned long flags;
> + unsigned long left;
> + int ret;
[ ... ]
> + left = wait_for_completion_timeout(&rtc_glink->ack, HZ);
> + spin_lock_irqsave(&rtc_glink->state_lock, flags);
> + rtc_glink->request_pending = false;
> + spin_unlock_irqrestore(&rtc_glink->state_lock, flags);
[Severity: High]
If wait_for_completion_timeout() expires, request_pending is cleared. If a
new request is immediately made, request_pending becomes true again.
Could a late firmware response to the previous request arrive and be
mistakenly accepted for the new request, since the callback lacks
transaction ID or opcode validation?
> + if (!left)
> + return -ETIMEDOUT;
> +
> + return rtc_glink->error;
> +}
[ ... ]
> +static int qcom_rtc_glink_get_time(struct qcom_rtc_glink *rtc_glink,
> + struct rtc_time *time)
> +{
> + u32 ticks;
> + int ret;
[ ... ]
> + ret = qcom_rtc_glink_get_property(rtc_glink, QCOM_RTC_GLINK_TIME,
> + &ticks);
> + if (!ret && ticks != U32_MAX) {
> + rtc_time64_to_tm((time64_t)ticks + rtc_glink->offset, time);
[Severity: High]
QCOM_RTC_GLINK_TIME is set as an absolute time in qcom_rtc_glink_set_time().
Does adding rtc_glink->offset to it here in the fallback path result in an
incorrect time calculation (Absolute Time + (Absolute Time - Uptime))?
Also, since rtc_glink->offset is a u32, will a negative 32-bit offset be
zero-extended rather than sign-extended when computing
(time64_t)ticks + rtc_glink->offset?
> + return 0;
> + }
> +
> + dev_err(rtc_glink->dev, "all time sources failed\n");
> + return -EIO;
> +}
[ ... ]
> +static int qcom_rtc_glink_get_alarm(struct qcom_rtc_glink *rtc_glink,
> + struct rtc_wkalrm *alarm)
> +{
> + u32 fw_alarm_time, fw_current, alarm_en;
> + struct rtc_time now_tm;
> + time64_t now_real, secs_until_alarm, alarm_real;
> + int ret;
[ ... ]
> + ret = qcom_rtc_glink_get_time(rtc_glink, &now_tm);
> + if (ret)
> + return ret;
> + now_real = rtc_tm_to_time64(&now_tm);
> + secs_until_alarm = (time64_t)fw_alarm_time - (time64_t)fw_current;
[Severity: High]
By casting these 32-bit firmware times to time64_t before subtracting, do we
lose the 32-bit modulo arithmetic?
If the hardware counters wrap, will this produce a large negative delta
instead of the correct positive duration?
> + alarm_real = now_real + secs_until_alarm;
> + dev_dbg(rtc_glink->dev,
> + "get_alarm: now_real=%lld fw_current=%u fw_alarm=%u delta=%lld\n",
> + now_real, fw_current, fw_alarm_time, secs_until_alarm);
> + rtc_time64_to_tm(alarm_real, &alarm->time);
> + alarm->enabled = !!alarm_en;
> + return 0;
> +}
[ ... ]
> +static void qcom_rtc_glink_callback(const void *data, size_t len, void *priv)
> +{
> + struct qcom_rtc_glink *rtc_glink = priv;
> + const struct pmic_glink_hdr *hdr = data;
> + unsigned long flags;
> + bool pending;
> +
> + if (len < sizeof(*hdr))
> + return;
> +
> + dev_dbg(rtc_glink->dev,
> + "RX opcode=0x%x type=0x%x owner=0x%x len=%zu\n",
> + le32_to_cpu(hdr->opcode), le32_to_cpu(hdr->type),
> + le32_to_cpu(hdr->owner), len);
> +
> + if (le32_to_cpu(hdr->opcode) == RTC_GLINK_ALARM_EXPIRED) {
> + dev_info(rtc_glink->dev, "alarm expired\n");
> + schedule_work(&rtc_glink->alarm_work);
[Severity: High]
Does this handle the RTC_GLINK_ALARM_EXPIRED opcode and call schedule_work()
unconditionally?
If the driver is actively tearing down, could this run after the device is
freed due to the devres teardown order?
> + return;
> + }
[ ... ]
> + switch (le32_to_cpu(hdr->opcode)) {
> + case RTC_GLINK_GET_PROPERTY:
> + fallthrough;
> + case RTC_GLINK_SET_PROPERTY: {
> + const struct qcom_rtc_glink_msg *msg = data;
> +
> + if (len < sizeof(struct pmic_glink_hdr) + sizeof(__le32)) {
> + rtc_glink->error = -EINVAL;
> + break;
> + }
> + rtc_glink->resp_value = le32_to_cpu(msg->property);
[Severity: High]
For GET_PROPERTY responses, does this assign the property ID (e.g., 0 for
time, 1 for alarm) to resp_value instead of the actual data in msg->value?
Also, the bounds check only validates 16 bytes (sizeof hdr + sizeof
property). Does this need to validate 20 bytes to safely access msg->value?
> + rtc_glink->resp_valid = true;
> + rtc_glink->error = 0;
> + dev_dbg(rtc_glink->dev, "ACK opcode=0x%x resp_value=%u\n",
> + le32_to_cpu(hdr->opcode), rtc_glink->resp_value);
> + break;
> + }
[ ... ]
> + default:
> + spin_unlock_irqrestore(&rtc_glink->state_lock, flags);
> + dev_warn(rtc_glink->dev,
> + "unhandled RX opcode=0x%x len=%zu\n",
> + le32_to_cpu(hdr->opcode), len);
> + return;
> + }
> +
> + spin_unlock_irqrestore(&rtc_glink->state_lock, flags);
> + complete(&rtc_glink->ack);
[Severity: High]
Is it safe to call complete() after dropping state_lock?
Could this create a race window where a preempted callback completes a newly
issued request prematurely?
> +}
[ ... ]
> +static int qcom_rtc_glink_probe(struct auxiliary_device *adev,
> + const struct auxiliary_device_id *id)
> +{
> + struct device *dev = &adev->dev;
> + struct qcom_rtc_glink *rtc_glink;
[ ... ]
> + rtc_glink->client = devm_pmic_glink_client_alloc(dev,
> + PMIC_GLINK_OWNER_RTC,
> + qcom_rtc_glink_callback,
> + qcom_rtc_glink_pdr_notify,
> + rtc_glink);
> + if (IS_ERR(rtc_glink->client))
> + return dev_err_probe(dev, PTR_ERR(rtc_glink->client),
> + "failed to allocate glink client\n");
> +
> + pmic_glink_client_register(rtc_glink->client);
> +
> + device_init_wakeup(dev, true);
> +
> + rtc_glink->rtc = devm_rtc_allocate_device(dev);
> + if (IS_ERR(rtc_glink->rtc))
[Severity: High]
The GLINK client is registered before the RTC device is allocated.
If devm_rtc_allocate_device() fails, or during driver unbind, the GLINK
client remains active while devres unwinds. Could this allow firmware to
trigger qcom_rtc_glink_callback() on a freed rtc_glink structure?
> + return dev_err_probe(dev, PTR_ERR(rtc_glink->rtc),
> + "failed to allocate RTC device\n");
[ ... ]
> +static void qcom_rtc_glink_remove(struct auxiliary_device *adev)
> +{
> + struct qcom_rtc_glink *rtc_glink = dev_get_drvdata(&adev->dev);
> + /*
> + * Nothing left to arm alarm_work after this returns: the glink
> + * client (and its callback/pdr_notify) is torn down by devm after
> + * .remove() returns, and rtc_update_irq() below still targets a
> + * live devm-managed rtc device.
> + */
> + cancel_work_sync(&rtc_glink->alarm_work);
[Severity: High]
Since the GLINK client is managed by devm and hasn't been unregistered yet,
could an incoming ALARM_EXPIRED firmware message re-queue alarm_work
immediately after this cancel_work_sync() completes?
This might lead to a use-after-free when devres subsequently frees the
memory.
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260807-rtc-glink-cleanup-v1-0-7801e4d69c4f@oss.qualcomm.com?part=2
next prev parent reply other threads:[~2026-08-06 21:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-06 20:56 [PATCH 0/2] rtc: Add Qualcomm PMIC RTC-GLINK support for Glymur Kamal Wadhwa
2026-08-06 20:56 ` [PATCH 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Document RTC client properties Kamal Wadhwa
2026-08-06 21:02 ` sashiko-bot
2026-08-07 0:02 ` Bjorn Andersson
2026-08-06 20:56 ` [PATCH 2/2] rtc: qcom: rtc-glink: Add PMIC GLINK RTC driver and extend pmic_glink Kamal Wadhwa
2026-08-06 21:09 ` sashiko-bot [this message]
2026-08-06 23:53 ` Bjorn Andersson
2026-08-07 20:58 ` Alexandre Belloni
2026-08-11 12:10 ` [PATCH 0/2] rtc: Add Qualcomm PMIC RTC-GLINK support for Glymur Troels Vognbjerg
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=20260806210934.485441F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=alexandre.belloni@bootlin.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kamal.wadhwa@oss.qualcomm.com \
--cc=linux-rtc@vger.kernel.org \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox