Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Barchiesi
OpenLDAP
Commits
50280bcf
Commit
50280bcf
authored
22 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Interoperability fix for sendmsg/recvmsg with access rights
parent
4f35d762
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/libldap/os-local.c
+26
-0
26 additions, 0 deletions
libraries/libldap/os-local.c
libraries/liblutil/getpeereid.c
+32
-1
32 additions, 1 deletion
libraries/liblutil/getpeereid.c
with
58 additions
and
1 deletion
libraries/libldap/os-local.c
+
26
−
0
View file @
50280bcf
...
...
@@ -131,6 +131,10 @@ ldap_pvt_is_socket_ready(LDAP *ld, int s)
}
#undef TRACE
#if !defined(HAVE_GETPEEREID) && !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && defined(HAVE_SENDMSG)
#define DO_SENDMSG
#endif
static
int
ldap_pvt_connect
(
LDAP
*
ld
,
ber_socket_t
s
,
struct
sockaddr_un
*
sa
,
int
async
)
{
...
...
@@ -155,6 +159,28 @@ ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr_un *sa, int async)
if
(
ldap_pvt_ndelay_off
(
ld
,
s
)
==
-
1
)
{
return
(
-
1
);
}
#ifdef DO_SENDMSG
/* Send a dummy message with access rights. Remote side will
* obtain our uid/gid by fstat'ing this descriptor.
*/
sendcred:
{
int
fds
[
2
],
rc
;
/* Abandon, noop, has no reply */
char
txt
[]
=
{
LDAP_TAG_MESSAGE
,
6
,
LDAP_TAG_MSGID
,
1
,
0
,
LDAP_REQ_ABANDON
,
1
,
0
};
struct
iovec
iov
=
{
txt
,
sizeof
(
txt
)};
struct
msghdr
msg
=
{
0
};
if
(
pipe
(
fds
)
==
0
)
{
msg
.
msg_iov
=
&
iov
;
msg
.
msg_iovlen
=
1
;
msg
.
msg_accrights
=
(
char
*
)
fds
;
msg
.
msg_accrightslen
=
sizeof
(
int
);
rc
=
sendmsg
(
s
,
&
msg
,
0
);
if
(
rc
<
0
)
rc
=
errno
;
close
(
fds
[
0
]);
close
(
fds
[
1
]);
}
}
#endif
return
(
0
);
}
...
...
This diff is collapsed.
Click to expand it.
libraries/liblutil/getpeereid.c
+
32
−
1
View file @
50280bcf
...
...
@@ -13,11 +13,17 @@
#include
<ac/unistd.h>
#include
<ac/socket.h>
#include
<ac/errno.h>
#if HAVE_SYS_UCRED_H
#include
<sys/ucred.h>
#endif
#if !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && defined(HAVE_SENDMSG)
#define DO_SENDMSG
#include
<sys/stat.h>
#endif
int
getpeereid
(
int
s
,
uid_t
*
euid
,
gid_t
*
egid
)
{
#ifdef LDAP_PF_LOCAL
...
...
@@ -46,9 +52,34 @@ int getpeereid( int s, uid_t *euid, gid_t *egid )
*
egid
=
peercred
.
cr_gid
;
return
0
;
}
#elif defined( DO_SENDMSG )
int
dummy
,
fd
[
2
];
struct
iovec
iov
=
{(
char
*
)
&
dummy
,
1
};
struct
msghdr
msg
=
{
0
};
struct
stat
st
;
msg
.
msg_iov
=
&
iov
;
msg
.
msg_iovlen
=
1
;
msg
.
msg_accrights
=
(
char
*
)
fd
;
msg
.
msg_accrightslen
=
sizeof
(
fd
);
if
(
recvmsg
(
s
,
&
msg
,
MSG_PEEK
)
>=
0
&&
msg
.
msg_accrightslen
==
sizeof
(
int
)
)
{
/* We must receive a valid descriptor, it must be a pipe,
* and it must only be accessible by its owner.
*/
dummy
=
fstat
(
fd
[
0
],
&
st
);
close
(
fd
[
0
]);
if
(
dummy
==
0
&&
S_ISFIFO
(
st
.
st_mode
)
&&
((
st
.
st_mode
&
(
S_IRWXG
|
S_IRWXO
))
==
0
))
{
*
euid
=
st
.
st_uid
;
*
egid
=
st
.
st_gid
;
return
0
;
}
}
#endif
#endif
/* LDAP_PF_LOCAL */
return
-
1
;
}
#endif
#endif
/* HAVE_GETPEEREID */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment