summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-08-17 21:03:12 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-08-17 21:03:12 +0000
commitea4c7557dd7048ba7a266d28de9e43fe0e282a52 (patch)
tree1e6bf499ea17c61a456262540a7ba8280ad8754a /source3/smbd
parentb65fdef1ba6a9a0a27da724a8324a6f2804759cf (diff)
downloadsamba-ea4c7557dd7048ba7a266d28de9e43fe0e282a52.tar.gz
samba-ea4c7557dd7048ba7a266d28de9e43fe0e282a52.tar.bz2
samba-ea4c7557dd7048ba7a266d28de9e43fe0e282a52.zip
connecting to IPC$ goes under the guest account. the IPC$ share should
be treated no differently than any other share (for any security setting: user, server or share). this will clear up a bug where, when clients connect to the IPC$ share, this used to be done under the guest account. the standard_sub_basic() macros will substitute the _guest_ account for %U, causing the samba server to look different from when the client then connects to any other share. lkcl (This used to be commit 38526569608f6eb5f098efee7013037873d140bf)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/server.c41
-rw-r--r--source3/smbd/uid.c2
2 files changed, 19 insertions, 24 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 1b961ab7c7..35774c0a43 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -2541,25 +2541,22 @@ int make_connection(char *service,char *user,char *password, int pwlen, char *de
pcon->ngroups = 0;
pcon->groups = NULL;
- if (!IS_IPC(cnum))
- {
- /* Find all the groups this uid is in and store them. Used by become_user() */
- setup_groups(pcon->user,pcon->uid,pcon->gid,&pcon->ngroups,&pcon->igroups,&pcon->groups);
+ /* Find all the groups this uid is in and store them. Used by become_user() */
+ setup_groups(pcon->user,pcon->uid,pcon->gid,&pcon->ngroups,&pcon->igroups,&pcon->groups);
- /* check number of connections */
- if (!claim_connection(cnum,
+ /* check number of connections */
+ if (!claim_connection(cnum,
lp_servicename(SNUM(cnum)),
lp_max_connections(SNUM(cnum)),False))
- {
- DEBUG(1,("too many connections - rejected\n"));
- return(-8);
- }
+ {
+ DEBUG(1,("too many connections - rejected\n"));
+ return(-8);
+ }
- if (lp_status(SNUM(cnum)))
- claim_connection(cnum,"STATUS.",MAXSTATUS,first_connection);
+ if (lp_status(SNUM(cnum)))
+ claim_connection(cnum,"STATUS.",MAXSTATUS,first_connection);
- first_connection = False;
- } /* IS_IPC */
+ first_connection = False;
pcon->open = True;
@@ -2577,13 +2574,13 @@ int make_connection(char *service,char *user,char *password, int pwlen, char *de
{
DEBUG(0,("Can't become connected user!\n"));
pcon->open = False;
- if (!IS_IPC(cnum)) {
- yield_connection(cnum,
+ yield_connection(cnum,
lp_servicename(SNUM(cnum)),
lp_max_connections(SNUM(cnum)));
- if (lp_status(SNUM(cnum))) yield_connection(cnum,"STATUS.",MAXSTATUS);
+ if (lp_status(SNUM(cnum))) yield_connection(cnum,"STATUS.",MAXSTATUS);
+ {
+ return(-1);
}
- return(-1);
}
if (ChDir(pcon->connectpath) != 0)
@@ -2592,13 +2589,13 @@ int make_connection(char *service,char *user,char *password, int pwlen, char *de
pcon->connectpath,strerror(errno)));
pcon->open = False;
unbecome_user();
- if (!IS_IPC(cnum)) {
- yield_connection(cnum,
+ yield_connection(cnum,
lp_servicename(SNUM(cnum)),
lp_max_connections(SNUM(cnum)));
- if (lp_status(SNUM(cnum))) yield_connection(cnum,"STATUS.",MAXSTATUS);
+ if (lp_status(SNUM(cnum))) yield_connection(cnum,"STATUS.",MAXSTATUS);
+ {
+ return(-5);
}
- return(-5);
}
string_set(&pcon->origpath,pcon->connectpath);
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c
index cdc4e474c6..4ffdb0923e 100644
--- a/source3/smbd/uid.c
+++ b/source3/smbd/uid.c
@@ -253,12 +253,10 @@ BOOL become_user(int cnum, uint16 vuid)
if (!become_gid(gid)) return(False);
#ifndef NO_SETGROUPS
- if (!IS_IPC(cnum)) {
/* groups stuff added by ih/wreu */
if (current_user.ngroups > 0)
if (setgroups(current_user.ngroups,current_user.groups)<0)
DEBUG(0,("setgroups call failed!\n"));
- }
#endif
if (!Connections[cnum].admin_user && !become_uid(uid))