I can set up a persistent Linux tap interface and make it owned by a specific user and group with one of these:
tunctl -u someuser -g somegroup -t example.tap
ip tuntap add dev example.tap mode tap user someuser group somegroup
I can confirm the interface is there and see a bit of information about it with
ip link list dev example.tap
But how, after the fact, can I find out which user or group the interface is owned by? ip tuntap seems very sparsely documented and ip link list doesn't seem to show ownership.