extern void (*crypt_function_recv)(unsigned long len, const unsigned char *indata, unsigned char *outdata);
extern void (*crypt_function_send)(unsigned long len, const unsigned char *indata, unsigned char *outdata);
+
+#ifndef HAVE_UCRED
+ struct ucred {
+ uid_t uid, pid, gid;
+};
+#endif /* HAVE_UCRED */
+
/**
* initialize a struct sockaddr_in
* @param addr A pointer to the struct to be initialized
msg.msg_iovlen = 1;
msg.msg_control = control;
msg.msg_controllen = sizeof(control);
+#ifdef HAVE_UCRED
/* attach the ucred struct */
cmsg = CMSG_FIRSTHDR(&msg);
cmsg->cmsg_level = SOL_SOCKET;
cmsg->cmsg_len = CMSG_LEN(sizeof(struct ucred));
*(struct ucred *)CMSG_DATA(cmsg) = c;
msg.msg_controllen = cmsg->cmsg_len;
+#endif
ret = sendmsg(sock, &msg, 0);
if (ret < 0)
ret = -E_SENDMSG;
* \param fd the socket file descriptor
* \param buf the buffer to store the message
* \param size the size of \a buffer
- * \param cred the credentials are returned here
*
* \return negative on errors, the user id on success.
*
struct msghdr msg;
struct cmsghdr *cmsg;
struct iovec iov;
- int result;
+ int result = 0;
int yes = 1;
struct ucred cred;
+#ifdef HAVE_UCRED
setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &yes, sizeof(int));
+#endif
memset(&msg, 0, sizeof(msg));
memset(buf, 0, size);
iov.iov_base = buf;
msg.msg_controllen = sizeof(control);
if (recvmsg(fd, &msg, 0) < 0)
return -E_RECVMSG;
+#ifdef HAVE_UCRED
result = -E_SCM_CREDENTIALS;
cmsg = CMSG_FIRSTHDR(&msg);
while (cmsg) {
}
cmsg = CMSG_NXTHDR(&msg, cmsg);
}
+#endif
return result;
}
* \return The file descriptor of the created socket, negative
* on errors.
*
- * \sa get_socket()
+ * \sa get_socket()
* \sa setsockopt(2)
* \sa bind(2)
* \sa listen(2)