All of lore.kernel.org
 help / color / mirror / Atom feed
* [refpolicy] Interface naming question for a filetrans
@ 2012-07-01  9:29 Sven Vermeulen
  2012-07-02 12:05 ` Christopher J. PeBenito
  0 siblings, 1 reply; 4+ messages in thread
From: Sven Vermeulen @ 2012-07-01  9:29 UTC (permalink / raw)
  To: refpolicy

Hi guys,

Let's say I am in the need for two interfaces.

One would do:
  files_pid_filetrans($1, udev_rules_t, dir, $2)
the other one
  filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)

I'm a bit in doubt about what to call the interfaces.

I believe the first one would be "udev_pid_filetrans_rules_dirs" as it seems
that all *_pid_filetrans routines I find in the policy are about the
var_run_t-based file transition, but then for the second one we would have
no clear answer.

One way to tackle such cases, as Dominick Grift suggested on the chat, is to
use *_generic_pid_filetrans for all the files_pid_filetrans() interfaces
currently in the policy, but that does mean all interfaces will need to be
updated.

Then udev_generic_pid_filetrans_rules_dirs could be used for the first case,
and udev_pid_filetrans_rules_dirs for the second.

So, what's the take on this?

Wkr,
	Sven Vermeulen

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [refpolicy] Interface naming question for a filetrans
  2012-07-01  9:29 [refpolicy] Interface naming question for a filetrans Sven Vermeulen
@ 2012-07-02 12:05 ` Christopher J. PeBenito
  2012-07-02 20:15   ` Sven Vermeulen
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher J. PeBenito @ 2012-07-02 12:05 UTC (permalink / raw)
  To: refpolicy

On 07/01/12 05:29, Sven Vermeulen wrote:
> Hi guys,
> 
> Let's say I am in the need for two interfaces.
> 
> One would do:
>   files_pid_filetrans($1, udev_rules_t, dir, $2)
> the other one
>   filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)
> 
> I'm a bit in doubt about what to call the interfaces.
> 
> I believe the first one would be "udev_pid_filetrans_rules_dirs" as it seems
> that all *_pid_filetrans routines I find in the policy are about the
> var_run_t-based file transition, but then for the second one we would have
> no clear answer.
> 
> One way to tackle such cases, as Dominick Grift suggested on the chat, is to
> use *_generic_pid_filetrans for all the files_pid_filetrans() interfaces
> currently in the policy, but that does mean all interfaces will need to be
> updated.
> 
> Then udev_generic_pid_filetrans_rules_dirs could be used for the first case,
> and udev_pid_filetrans_rules_dirs for the second.
> 
> So, what's the take on this?

The general idea of the naming is modulename_fromtype_filetrans[_totype], where fromtype and totype are the more abstract names for the types.  But it sounds like the above situation is messy.  Would you further describe what you're trying to do (raw rules would be fine)?


-- 
Chris PeBenito
Tresys Technology, LLC
www.tresys.com | oss.tresys.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [refpolicy] Interface naming question for a filetrans
  2012-07-02 12:05 ` Christopher J. PeBenito
@ 2012-07-02 20:15   ` Sven Vermeulen
  2012-07-03 13:55     ` Christopher J. PeBenito
  0 siblings, 1 reply; 4+ messages in thread
From: Sven Vermeulen @ 2012-07-02 20:15 UTC (permalink / raw)
  To: refpolicy

On Mon, Jul 02, 2012 at 08:05:38AM -0400, Christopher J. PeBenito wrote:
> On 07/01/12 05:29, Sven Vermeulen wrote:
> > Let's say I am in the need for two interfaces.
> > 
> > One would do:
> >   files_pid_filetrans($1, udev_rules_t, dir, $2)
> > the other one
> >   filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)
> > 
> > I'm a bit in doubt about what to call the interfaces.
[...]
> > So, what's the take on this?
> 
> The general idea of the naming is modulename_fromtype_filetrans[_totype],
> where fromtype and totype are the more abstract names for the types.  But
> it sounds like the above situation is messy.  Would you further describe
> what you're trying to do (raw rules would be fine)?

One is:

filetrans_pattern($1, var_run_t, udev_rules_t, dir, $2)

The other one:

filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)

which is about as raw as possible without loosing the idea ;-) For instance,
an init script creates "rules.d" in "/run/udev", so we need the second one.
But udevadm creates "rules" in "/var/run" which needs the first one.
  filetrans_pattern(initrc_t, udev_var_run_t, udev_rules_t, dir, "rules.d")
  filetrans_pattern(udev_t, var_run_t, udev_rules_t, dir, "rules")


The problem with the naming is that, in this particular case, _fromtype_ is
dubious. By using "_pids_" it can either refer to the generic one
(var_run_t) or to the subtype of the module (udev_var_run_t).

I might work around the issue by trying to work around the question itself
(why does udevadm want to create a "rules" in /var/run, shouldn't it use
/var/run/udev) but I think that's a bit besides the point right now, as
there might be different situations where we have this case.

Wkr,
	Sven Vermeulen

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [refpolicy] Interface naming question for a filetrans
  2012-07-02 20:15   ` Sven Vermeulen
@ 2012-07-03 13:55     ` Christopher J. PeBenito
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher J. PeBenito @ 2012-07-03 13:55 UTC (permalink / raw)
  To: refpolicy

On 7/2/2012 4:15 PM, Sven Vermeulen wrote:
> On Mon, Jul 02, 2012 at 08:05:38AM -0400, Christopher J. PeBenito wrote:
>> On 07/01/12 05:29, Sven Vermeulen wrote:
>>> Let's say I am in the need for two interfaces.
>>>
>>> One would do:
>>>    files_pid_filetrans($1, udev_rules_t, dir, $2)
>>> the other one
>>>    filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)
>>>
>>> I'm a bit in doubt about what to call the interfaces.
> [...]
>>> So, what's the take on this?
>>
>> The general idea of the naming is modulename_fromtype_filetrans[_totype],
>> where fromtype and totype are the more abstract names for the types.  But
>> it sounds like the above situation is messy.  Would you further describe
>> what you're trying to do (raw rules would be fine)?
>
> One is:
>
> filetrans_pattern($1, var_run_t, udev_rules_t, dir, $2)
>
> The other one:
>
> filetrans_pattern($1, udev_var_run_t, udev_rules_t, dir, $2)
>
> which is about as raw as possible without loosing the idea ;-) For instance,
> an init script creates "rules.d" in "/run/udev", so we need the second one.
> But udevadm creates "rules" in "/var/run" which needs the first one.
>    filetrans_pattern(initrc_t, udev_var_run_t, udev_rules_t, dir, "rules.d")
>    filetrans_pattern(udev_t, var_run_t, udev_rules_t, dir, "rules")
>
>
> The problem with the naming is that, in this particular case, _fromtype_ is
> dubious. By using "_pids_" it can either refer to the generic one
> (var_run_t) or to the subtype of the module (udev_var_run_t).

Right.  I'd go with generic pids for var_run_t; pids would imply the udev pids.

-- 
Chris PeBenito
Tresys Technology, LLC
www.tresys.com | oss.tresys.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-07-03 13:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-01  9:29 [refpolicy] Interface naming question for a filetrans Sven Vermeulen
2012-07-02 12:05 ` Christopher J. PeBenito
2012-07-02 20:15   ` Sven Vermeulen
2012-07-03 13:55     ` Christopher J. PeBenito

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.