From: Mark Hatle <mark.hatle@windriver.com>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Directory Ownership - RFC
Date: Mon, 6 Jun 2011 11:31:55 -0500 [thread overview]
Message-ID: <4DED00FB.4080205@windriver.com> (raw)
I'm starting to work on an enhancement that will allow (binary) packages
produced from the recipes to clearly own directories. I'm trying to find a
simple enough solution that avoids having to change most recipes, while still
giving the developer and distribution designers flexibility to establish clear
lines of ownership and system/distribution policy.
Problem
-------
Currently directories are "owned" by whatever packages use them. This works for
the most part, but can lead to problems when many different packages use the
same directory -- such as /bin, /sbin, /etc, /lib, /usr/lib, etc....
When packaging (at least with RPM), the directory permissions, owners and groups
are automatically included into the package using the existing FILES_pkg globbing.
The primary issue is that the first package that creates/uses the directory is
generally the one that sets the permissions, owner and group. For many
directories 0755, root, root is perfectly fine, however other standard
directories may require specific modes, owners and groups... (We recently had
an issue with sudo creating /var and /var/lib as 0700... which caused failures
in other packages.)
This causes issues with consistency between recipes as well as potential
security implications on multi-user systems.
Proposed solution
-----------------
Add a new "DIRS" variable, similar to the existing "FILES", that will specify
the directories for a package to own. By default DIRS = FILES, i.e. DIRS_${PN}
?= FILES_${PN}
The purpose of this is to automatically inherit the files list and walk the
directories in the same way that existing recipes do it. Resulting in no change
to most recipes, but also giving a package a clear way to override the values
and specify select directories to own.
A key difference in behavior between the DIRS and FILES methods would be any
directory specified with a "/" at the end of the name would avoid walking the
directory. For example, DIRS = /usr/share/foo would include "foo" and all of
the directories under it. While DIRS = /usr/share/foo/ would simply include
"foo", and avoid walking the subdirectories. Q: Is this confusing behavior?
In addition to the above, a new way to exclude directories from being included
-- even if in the DIRS list is needed to keep things "simple".
This requires adding a new variable that that will contain a list of directories
that should be ignored when processing the FILES_pkg. This exclusion list only
covers the directories themselves, not the files that would normally be found
inside of them.
The exclusion variable would be set, by default, to (based on base-files):
/tmp ${localstatedir}/volatile/lock ${localstatedir}/volatile/tmp
/home ${prefix}/src ${localstatedir}/local
/bin /boot /dev ${sysconfdir} ${sysconfdir}/default
${sysconfdir}/skel /lib /mnt /proc /home/root /sbin
${prefix} ${bindir} ${docdir} /usr/games ${includedir}
${libdir} ${sbindir} ${datadir}
${datadir}/common-licenses ${datadir}/dict ${infodir}
${mandir} ${datadir}/misc ${localstatedir}
${localstatedir}/backups ${localstatedir}/lib
/sys ${localstatedir}/lib/misc ${localstatedir}/spool
${localstatedir}/volatile ${localstatedir}/volatile/cache
${localstatedir}/volatile/lock/subsys
${localstatedir}/volatile/log
${localstatedir}/volatile/run
/mnt /media /media/card /media/cf /media/net /media/ram
/media/union /media/realroot /media/hdd
/media/mmc1
/srv
${prefix}/local ${prefix}/local/bin ${prefix}/local/games
${prefix}/local/include ${prefix}/local/lib ${prefix}/local/sbin
${prefix}/local/share ${prefix}/local/src
/var/mail
Assuming the variable is called "EXCLUDEDIRS" (I'm still looking for a good
variable name), a recipe would be able to override it for the recipe as a whole,
or for the split packages. Almost all recipes would not need to ever override
the value.
----
The net result is any existing package will continue to work.
A new distribution wide set of directories that regular recipes should not own
can be created.
And the few key packages that need to own directories can do so, and be sure
that they are the exclusive owners.
Comments, Suggestions?
--Mark
next reply other threads:[~2011-06-06 16:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-06 16:31 Mark Hatle [this message]
2011-06-06 21:32 ` Directory Ownership - RFC Mark Hatle
2011-06-10 20:32 ` Mark Hatle
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=4DED00FB.4080205@windriver.com \
--to=mark.hatle@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/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