public inbox for pdm-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
To: Hannes Laimer <h.laimer@proxmox.com>
Cc: pdm-devel@lists.proxmox.com
Subject: Re: [pdm-devel] [PATCH 1/2] schema2rust: extract pattern validation from nested API schema fields
Date: Thu, 16 Oct 2025 11:31:57 +0200	[thread overview]
Message-ID: <7gmvymm6uk7jliyt4nsykkt43zvlywgtycup3vye4zv4i6zzql@57weavcezzm7> (raw)
In-Reply-To: <6d7c3a09-abdf-4b62-ba0d-9af02c732bc4@proxmox.com>

On Thu, Oct 16, 2025 at 08:13:14AM +0200, Hannes Laimer wrote:
> On 10/15/25 14:32, Wolfgang Bumiller wrote:
> > The patch itself works, but there are 2 issues:
> > 
> > The currently generated regexes (luckily?) all produce regexes which are
> > 1. anchored
> > 2. compatible with the regex crate
> > 
> > With your patch, a lot of them will not satisfy both.
> > 
> > For 1:
> > The PVE schema code generally anchors the regexes at *use* time, which
> > is less than ideal and we could probably move towards including the
> > anchors in the regexes itself (unless we specifically need them
> > unanchored for some reason?)
> > In the rust code we could not do this. The regex crate does not expose
> > this and requires them to be anchored explicitly within the regex.
> > 
> > We could also include `^` and `$` in the generator, but it'll be a bit
> > redundant (but won't hurt).
> > 
> > But for 2:
> > I'm afraid what we need to do is find a way to "whitelist" which regexes
> > get generated. We could produce TODO comments for the rest.
> > 
> > I went ahead and pushed a commit which produces tests for the regexes.
> > If you go ahead and run `cargo` test after regenerating with this patch,
> > you'll see the issue.
> > 
> 
> Thanks for taking a look! Hmm, I don't think we have patterns that rely
> on PCRE specific features, i.e. we could maybe convert those without
> losing semantic meaning for validation.
> 
> I'm not super familiar with PCRE and its intricacies, but I don't think
> we have pattern that couldn't be represented otherwise.
> 
> Some things conversion would have to do:
> - {,N} -> {0,N}

Weirdly it accepts {N,}, but not {,N} ...

> - in rust we shouldn't need flag-resets, (I think)
> - (?^i:...) -> (?i:...)

Missing a `-` here - (?^i:...) would be (?-i:...) AFAICT ;-)

We'd only not need the *outer* ones, but anything interpolated into the
middle of a regex may well need it.

`qr/foo${other_re}bar/i` <- there's an `/i` at the end, if `$other_re`
uses `qr//` as well, *its* `(?^i:...)` is still required.

Also - we still do need to anchor the un-anchored regexes with `^…$`.

> - ...
> 
> Not sure if it would be feasible to try to integrate some kind of
> "conversion" into the generator itself. Of the patterns used in the PVE
> API spec, I think this would mostly be syntactic things. BUT I did
> probably miss some things :P also, is there a reason we would not want
> this assuming converting patterns "on-the-fly" in the generator is
> feasible?

If the conversion is sound, we can do this. But if that entails
fully and properly parsing regular expressions, then I'd rather manually
vet the regexes and require them to be predefined in generate.pl (with a
from->to mapping to verify that the perl-side hasn't changed)...


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel

  reply	other threads:[~2025-10-16  9:32 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-01 15:47 [pdm-devel] [PATCH proxmox 0/2] schema2rust: use 'pattern' if specified Hannes Laimer
2025-10-01 15:47 ` [pdm-devel] [PATCH 1/2] schema2rust: extract pattern validation from nested API schema fields Hannes Laimer
2025-10-15 12:32   ` Wolfgang Bumiller
2025-10-16  6:13     ` Hannes Laimer
2025-10-16  9:31       ` Wolfgang Bumiller [this message]
2025-10-01 15:47 ` [pdm-devel] [PATCH 2/2] pve-api-types: regenerate Hannes Laimer

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=7gmvymm6uk7jliyt4nsykkt43zvlywgtycup3vye4zv4i6zzql@57weavcezzm7 \
    --to=w.bumiller@proxmox.com \
    --cc=h.laimer@proxmox.com \
    --cc=pdm-devel@lists.proxmox.com \
    /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
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal