mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
100 lines
2.1 KiB
C++
100 lines
2.1 KiB
C++
/* vi: ts=8 sts=4 sw=4
|
|
*
|
|
* This file is part of the KDE project, module kdesu.
|
|
* Copyright (C) 1999,2000 Geert Jansen <g.t.jansen@stud.tue.nl>
|
|
*
|
|
* secure.cpp: Peer credentials for a UNIX socket.
|
|
*/
|
|
|
|
#include "secure.h"
|
|
|
|
#include <config-runtime.h>
|
|
#include <config-kdesud.h>
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
// FIXME: This is just here to make it compile (since ksock* was removed from kdelibs).
|
|
// It would be better to fix it more globally. (Caleb Tennis)
|
|
typedef unsigned ksocklen_t;
|
|
|
|
/**
|
|
* Under Linux, Socket_security is supported.
|
|
*/
|
|
|
|
#if defined(HAVE_GETPEEREID)
|
|
|
|
SocketSecurity::SocketSecurity(int sockfd) : pid(-1), gid(-1), uid(-1)
|
|
{
|
|
uid_t euid;
|
|
gid_t egid;
|
|
if (getpeereid(sockfd, &euid, &egid) == 0) {
|
|
uid = euid;
|
|
gid = egid;
|
|
pid = -1;
|
|
}
|
|
}
|
|
|
|
# elif defined(HAVE_GETPEERUCRED)
|
|
|
|
#include <ucred.h>
|
|
|
|
SocketSecurity::SocketSecurity(int sockfd) : pid(-1), gid(-1), uid(-1)
|
|
{
|
|
ucred_t *ucred = 0;
|
|
|
|
if (getpeerucred(sockfd, &ucred) == 0) {
|
|
uid = ucred_geteuid(ucred);
|
|
gid = ucred_getrgid(ucred);
|
|
pid = -1;
|
|
ucred_free(ucred);
|
|
}
|
|
}
|
|
|
|
#elif defined(SO_PEERCRED)
|
|
|
|
SocketSecurity::SocketSecurity(int sockfd) : pid(-1), gid(-1), uid(-1)
|
|
{
|
|
ucred cred;
|
|
ksocklen_t len = sizeof(struct ucred);
|
|
if (getsockopt(sockfd, SOL_SOCKET, SO_PEERCRED, &cred, &len) < 0) {
|
|
kError() << "getsockopt(SO_PEERCRED) " << perror << endl;
|
|
return;
|
|
}
|
|
pid = cred.pid;
|
|
gid = cred.gid;
|
|
uid = cred.uid;
|
|
}
|
|
|
|
# else
|
|
#ifdef __GNUC__
|
|
#warning SocketSecurity support for your platform not implemented/available!
|
|
#endif
|
|
/**
|
|
* The default version does nothing.
|
|
*/
|
|
|
|
SocketSecurity::SocketSecurity(int sockfd) : pid(-1), gid(-1), uid(-1)
|
|
{
|
|
static bool warned_him = false;
|
|
|
|
if (!warned_him) {
|
|
kWarning() << "Using void socket security. Please add support for your" ;
|
|
kWarning() << "platform to kdesu/kdesud/secure.cpp" ;
|
|
warned_him = true;
|
|
}
|
|
|
|
// This passes the test made in handler.cpp
|
|
uid = getuid();
|
|
}
|
|
|
|
#endif
|