X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fcnid_dbd%2Fcomm.c;h=64038714961320c2adc775d46cdf016d20939e4a;hb=6d60f95c388da5f8f901d67e0018cf4896e6c6dc;hp=0dae7be74f13ded2e1043f975422dafcb1303690;hpb=e2b3be108f5d8757324c98d63df42b0c11835f82;p=netatalk.git diff --git a/etc/cnid_dbd/comm.c b/etc/cnid_dbd/comm.c index 0dae7be7..64038714 100644 --- a/etc/cnid_dbd/comm.c +++ b/etc/cnid_dbd/comm.c @@ -1,7 +1,7 @@ /* - * $Id: comm.c,v 1.6 2009-10-19 08:09:07 didg Exp $ - * * Copyright (C) Joerg Lenneis 2003 + * Copyright (C) Frank Lahm 2010 + * * All Rights Reserved. See COPYING. */ @@ -9,41 +9,32 @@ #include "config.h" #endif +#ifndef _XOPEN_SOURCE +# define _XOPEN_SOURCE 600 +#endif +#ifndef __EXTENSIONS__ +# define __EXTENSIONS__ +#endif +#ifndef _GNU_SOURCE +# define _GNU_SOURCE +#endif + #include #include #include #include - -#ifdef HAVE_UNISTD_H #include -#endif - #include -#define _XPG4_2 1 -#include - -#ifdef HAVE_SYS_TYPES_H #include -#endif - -#ifdef HAVE_SYS_TIME_H #include -#endif - -#ifdef HAVE_SYS_UIO_H #include -#endif - -#ifdef HAVE_SYS_SOCKET_H #include -#endif - #include - #include #include #include +#include #include #include "db_param.h" @@ -87,51 +78,6 @@ static void invalidate_fd(int fd) return; } -static int recv_cred(int fd) -{ - int ret; - struct msghdr msgh; - struct iovec iov[1]; - struct cmsghdr *cmsgp = NULL; - char buf[CMSG_SPACE(sizeof(int))]; - char dbuf[80]; - - memset(&msgh,0,sizeof(msgh)); - memset(buf,0,sizeof(buf)); - - msgh.msg_name = NULL; - msgh.msg_namelen = 0; - - msgh.msg_iov = iov; - msgh.msg_iovlen = 1; - - iov[0].iov_base = dbuf; - iov[0].iov_len = sizeof(dbuf); - - msgh.msg_control = buf; - msgh.msg_controllen = sizeof(buf); - - do { - ret = recvmsg(fd ,&msgh,0); - } while ( ret == -1 && errno == EINTR ); - - if ( ret == -1 ) { - return -1; - } - - for ( cmsgp = CMSG_FIRSTHDR(&msgh); cmsgp != NULL; cmsgp = CMSG_NXTHDR(&msgh,cmsgp) ) { - if ( cmsgp->cmsg_level == SOL_SOCKET && cmsgp->cmsg_type == SCM_RIGHTS ) { - return *(int *) CMSG_DATA(cmsgp); - } - } - - if ( ret == sizeof (int) ) - errno = *(int *)dbuf; /* Rcvd errno */ - else - errno = ENOENT; /* Default errno */ - - return -1; -} /* * Check for client requests. We keep up to fd_table_size open descriptors in @@ -181,7 +127,7 @@ static int check_fd(time_t timeout, const sigset_t *sigmask, time_t *now) if (FD_ISSET(control_fd, &readfds)) { int l = 0; - fd = recv_cred(control_fd); + fd = recv_fd(control_fd, 0); if (fd < 0) { return -1; } @@ -267,8 +213,14 @@ int comm_rcv(struct cnid_dbd_rqst *rqst, time_t timeout, const sigset_t *sigmask LOG(log_maxdebug, logtype_cnid, "comm_rcv: got data on fd %u", cur_fd); - nametmp = rqst->name; - if ((b = read(cur_fd, rqst, sizeof(struct cnid_dbd_rqst))) != sizeof(struct cnid_dbd_rqst)) { + if (setnonblock(cur_fd, 1) != 0) { + LOG(log_error, logtype_cnid, "comm_rcv: setnonblock: %s", strerror(errno)); + return -1; + } + + nametmp = (char *)rqst->name; + if ((b = readt(cur_fd, rqst, sizeof(struct cnid_dbd_rqst), 1, CNID_DBD_TIMEOUT)) + != sizeof(struct cnid_dbd_rqst)) { if (b) LOG(log_error, logtype_cnid, "error reading message header: %s", strerror(errno)); invalidate_fd(cur_fd); @@ -276,14 +228,15 @@ int comm_rcv(struct cnid_dbd_rqst *rqst, time_t timeout, const sigset_t *sigmask return 0; } rqst->name = nametmp; - if (rqst->namelen && read(cur_fd, rqst->name, rqst->namelen) != rqst->namelen) { + if (rqst->namelen && readt(cur_fd, (char *)rqst->name, rqst->namelen, 1, CNID_DBD_TIMEOUT) + != rqst->namelen) { LOG(log_error, logtype_cnid, "error reading message name: %s", strerror(errno)); invalidate_fd(cur_fd); return 0; } /* We set this to make life easier for logging. None of the other stuff needs zero terminated strings. */ - rqst->name[rqst->namelen] = '\0'; + ((char *)(rqst->name))[rqst->namelen] = '\0'; LOG(log_maxdebug, logtype_cnid, "comm_rcv: got %u bytes", b + rqst->namelen);