On Fri, Feb 12, 2016 at 12:12:32PM -0500, John Ferlan wrote:
Introduce virPolkitAgentCreate and virPolkitAgentDestroy
virPolkitAgentCreate will run the polkit pkttyagent image as an asynchronous
command in order to handle the local agent authentication via stdin/stdout.
The code makes use of the pkttyagent --notify-fd mechanism to let it know
when the agent is successfully registered.
virPolkitAgentDestroy will close the command effectively reaping our
child process
Needed to move around or add the "#include vircommand.h" since,
virpolkit.h now uses it.
I have literally no idea how PolicyKit is used, so I don't feel like the
right person to review more than the first patch (which looks fine).
But this is something I can't let go unnoticed, sorry. If you are using
virCommandPtr in virpolkit.h, then that file should also include
vircommand.h. Then you can remove it from virpolkit.c (if it is
included there) and you don't need to reorganize the includes or touch
them in other files. And anyone can include virpolkit.h without needing
to care about any dependencies.