Bug 198251 - samba: make /var/cache/samba/windind_privledged group owned
Summary: samba: make /var/cache/samba/windind_privledged group owned
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Fedora
Classification: Fedora
Component: samba
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Simo Sorce
QA Contact: David Lawrence
URL:
Whiteboard:
Depends On:
Blocks: FC7Target 188138 198253 226431
TreeView+ depends on / blocked
 
Reported: 2006-07-10 16:20 UTC by Rex Dieter
Modified: 2007-11-30 22:11 UTC (History)
4 users (show)

Fixed In Version: 3.0.25a-2
Clone Of:
Environment:
Last Closed: 2007-03-23 23:22:43 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
Expected changes for the spec file ;) (611 bytes, patch)
2006-08-03 15:42 UTC, Dmitry Butskoy
no flags Details | Diff

Description Rex Dieter 2006-07-10 16:20:21 UTC
At least 2 other packages (squid, mod_auth_ntlm_winbind) need to modity/use data
contained within /var/cache/samba/winbind_priveleged.  For example, squid
currently contains the ugly scriptlet (imo, hack):
%triggerin -- samba-common
chgrp squid /var/cache/samba/winbindd_privileged > /dev/null 2>& 1 || true

not nice.

I propose that the samba packaging help avoid this by creating a samba
user/group, and making the aforementioned folder owned/writable by group samba.
 This way, other winbind-using pkgs could simply add themselves to the samba
group on install without having to resort to ugly scriptlet hacks to achieve the
same thing.

Comment 1 Rex Dieter 2006-07-10 16:40:27 UTC
Upon further review, I don't think this dir needs to be writable, only readable
by other apps.

Comment 2 Dmitry Butskoy 2006-07-10 16:54:26 UTC
Potentially ntlm_auth/winbindd can be used by cyrus-sasl and dovecot, IMHO in
the nearest future. I.e., it is actually more than 2 apps only.

The group can be named "winbind" ...


Comment 3 Dmitry Butskoy 2006-07-25 11:20:08 UTC
The new samba-2.0.23a is released, which fixes some domain-related bugs etc.
It seems that new samba update can appear soon. If it is true, maybe implement
this group feature now (i.e., before FC6)?

Comment 4 Dmitry Butskoy 2006-08-03 15:42:17 UTC
Created attachment 133561 [details]
Expected changes for the spec file ;)

I prefer the gorup should be named "winbind".

An appropriate patch added for squid too.

I hope there is enough time to implement this feature (with cooperating samba
and squid maintainers) before FC6 time...

Comment 5 Rex Dieter 2006-08-22 15:33:12 UTC
Jay, can you please take a look at (or at least comment on) this before FC6 is
released?

Comment 6 Jay Fenlason 2006-08-22 20:33:13 UTC
This new group is going to be implemented by creating the group in a separate 
subpackage (samba-group?  I don't think we've decided on the name yet).  That 
way packages that need that group to exist will only require the subpackage 
and not all of Samba.  Unfortunately, the package list for FC6 was already 
frozen, and the change requires updates to packages I don't control, so it's 
going to be in FC7. 

Comment 7 Rex Dieter 2006-08-22 20:38:37 UTC
Dude, this *has* to be done in time for fc6.  This is serious breakage, and
package standards violation going on here.  Further, other packages (see squid)
and Extras Reviews (see mod_auth_ntlm) are waiting on *this* to be resolved in
time for FC6.  If fixing it for FC6 means putting the dep on the main samba pkg
(which is where it should be anyway, that's where winbind lives), so be it.

Comment 8 Jay Fenlason 2006-08-22 20:48:08 UTC
It is *not* appropriate to have a server require another server just because 
some (small?) subset of users may want to configure the first server to use a 
service provided by the second server.  They really need to be separately 
installable and removable. 

Comment 9 Rex Dieter 2006-08-23 02:00:16 UTC
Fair enough, hadn't thought about considering samba to be optional.

How about this, which should make everyone happy:
1. include scriptlet in %post samba-common (or %pre, doesn't matter much) to
create group (and user, if also desired) winbind (see comment #4)

2.  Any other pkg that wants to make use of winbind, add something like:
(code shamelessly borrowed from squid):
%triggerin samba-common
/usr/sbin/usermod -a -G winbind %{name} >/dev/null 2>&1 ||: 

This way, no new packages are required, and *this* bug gets fixed to boot.

Comment 10 Rex Dieter 2006-08-23 02:03:26 UTC
Corrolary to 2.  Those packages that want to use winbind, must also create the
user %{name} referenced in the %triggerin scriptlet (of course).

Comment 11 Dmitry Butskoy 2006-08-23 10:30:53 UTC
for comment #6 :
> This new group is going to be implemented by creating the group in a separate 
> subpackage
and for comment #8 :
> It is *not* appropriate to have a server require another server
Jay,
What can you say about trigger scripts in rpm? They just allow to avoid such
dependencies. There is a couple of packages in Core which already uses such a
technics (at least 71 for the moment).

I.e, no any extra packages needed. Just add a group and let it own the winbind
directory. All seems to be compatible and nothing is spoiled.

for comment #8 :
> because some (small?) subset of users
IMHO Fedora is a little bit wider than RHEL. I.e, it can be used in some
heterogeneous system, when both Linux and Windows boxes are used together.
When such a system uses domain controllers for auth, i.e. AD, people want to use
it for proxy/web/mail auth too. But currently it is possible just for squid.
As a result, people switches from Apache to IIS when they need AD auth.

Therefore I think it is not a "small subset of users". It is a policy to allow
people to use open-source software (squid, apache, and dovecot/postfix/sendmail
later) in its strong AD-based environment, and to not switch from Linux to
Windows just because of such an auth is needed.



Comment 12 Dmitry Butskoy 2006-08-23 10:44:04 UTC
for comment #10 :
> Those packages that want to use winbind, must also create the user %{name}
All such packages already have a special user suitable for this (squid uses
"squid", https uses "apache", dovecot uses "dovecot", postfix uses "postfix"
etc. :))

Rex,
Maybe it would be useful to discuss this issue at appropriate mail lists?
(fedora-devel?)

Also it would be useful if squid maintainers atleast remove its "chgrp ..." code
for FC6 (and add "usermod" when/if a group will appear in the future).



Comment 13 Dmitry Butskoy 2006-09-20 15:32:17 UTC
Squid maintainer already had fixed his part of the issue, according to bug #198253 .

Please, don't delay the Samba's part of work, the changes (for Samba itself
exactly) are trivial enough.


Comment 14 Dmitry Butskoy 2006-09-20 15:35:54 UTC
By the way, there is a duscussion on samba-technical list about a best choice
for the winbindd dir access, see
http://lists.samba.org/archive/samba-technical/2006-September/049311.html

The "best choice" is considered as what we propose.

Comment 15 Rex Dieter 2006-11-22 14:14:36 UTC
Jay, any movement here?   The mod_auth_ntlm_winbind package review is (still)
blocking on this.  

Besides, this is a MUSTFIX item that will need to be addressed before samba (and
squid for that matter) can pass any sort of package review.

Comment 16 Rex Dieter 2006-12-14 21:52:23 UTC
Ping, ping, the witch is dead... only 2 more weeks till Christmas.  
We're now going on (almost) 4 *months* of silence, Jay.

Comment 17 Andrew Bartlett 2007-01-02 01:56:53 UTC
It is a pity this missed FC6.  I hope this gets picked up/fixed up in the
transition to FC7 and the opening up of core...

Comment 18 Dmitry Butskoy 2007-02-16 14:12:07 UTC
Now, ping Simo... :)

Comment 19 Rex Dieter 2007-02-16 14:44:43 UTC
apps dependent on this (squid, in particular) will not pass merge review, please
address this asap.

May want to start looking for help/comaintainers, since delay in implementing
suggestions/patches imply that current/previous maintainers haven't had enough
time to give samba pkg the love/attention it deserves.  Hint: I'm interested in
helping out. (:

Comment 20 Simo Sorce 2007-02-25 17:20:09 UTC
Can't we just ask to have a wbpriv (I prefer this name as it makes clear it is
privileged) group created by default at system install independent of squid,
samba or whatever package may need it?

Are there any counter arguments to this?

Simo.

Comment 21 Dmitry Butskoy 2007-02-26 13:11:58 UTC
> wbpriv
Hmmm...
 
"wbPRIV" takes a sense only if "wbPUBL" is planned. Is it true?.. ;)

Are another similar groups (f.e. "apache", "mail", "postfix", "news" etc.)
private or public? IMHO they are private, and there are no needs to create some
additional "public" group for those packages. Therefore the groups have been
named just by the correspond package's name...

Moreover, "wb" in "wbpriv" is not long enough to point that it is
"winbind"-related. :)

I still prefer "winbind", basing on apache/news/mail/dovecot/fuse/avahi
etc.etc.etc... precedents.


> group created by default at system install independent of squid,
> samba or whatever package may need it?
What about system upgrades? In such cases /etc/group is not replaced...

Or you mean "assign the group some fixed number"? (i.e. when create the group in
%pre section, add "-g NUMBER" to the groupadd command)? If so, looks fine.

Anyway, as well as for dovecot/apache etc., the %pre section must try to add
user and/or group, with "2>/dev/null" for case when it is already exists. As
long as initial /etc/group (from "setup" package) has no any such group
preinstalled, our way is to not preinstall it too.


Comment 22 Rex Dieter 2007-02-26 13:21:58 UTC
> Are there any counter arguments to this?

We'd need implementation details to make a fair asessment.  When/how exactly
would this account be created?

I take it, then, that you have reservations about the implementation/suggestion
put forth by Dmitry and myself.  If so, I'd be interested in hearing them.

Comment 23 Simo Sorce 2007-03-14 19:40:29 UTC
I will shortly push a package that fixes this.
The group name is wbpriv with fixed gid 88.
Comment about the name is not pertinent as this is a group that is specific to
privileged operations (not private) and wb is a wellknown short for winbind.
The group will be created by the package samba-common where winbindd is packaged.
The directory is going to be moved to /var/lib/samba/winbindd_privileged to
adhere to FHS standards (by the std. you can delete /var/cache/samba/ contents,
this would be a disaster).

More on this later.

Comment 24 Peter Vrabec 2007-03-16 13:42:41 UTC
Simo, is it necessary to use fixed gid/uid?


Comment 25 Dmitry Butskoy 2007-03-16 14:37:28 UTC
for comment #24

It seems that another programs (apache, postfix etc.) prefer fixed numbers. Just
considering this as a precedent, anyway...

Comment 26 Simo Sorce 2007-03-16 16:37:38 UTC
Imo no, but I asked and I was told that policy is we give it a fixed number.
We can easily change this later if the policy changes and we can liberate the
gid, so please do not rely on the gid number in any code but only on the group name.

Simo.

Comment 27 Simo Sorce 2007-03-23 23:22:43 UTC
Latest packages use the metioned in comment 23

Comment 28 Simo Sorce 2007-06-20 13:39:59 UTC
We fixed this in F7, closing


Note You need to log in before you can comment on or make changes to this bug.