~raof/mir/prober-drm-device-probe

« back to all changes in this revision

Viewing changes to 3rd_party/libancillary/fd_recv.c

  • Committer: Alan Griffiths
  • Date: 2012-09-03 11:49:23 UTC
  • mto: This revision was merged to the branch mainline in revision 114.
  • Revision ID: alan@octopull.co.uk-20120903114923-na70zt8h5s6gnnkj
Add 3rd party including libancillary

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 * libancillary - black magic on Unix domain sockets
 
3
 * (C) Nicolas George
 
4
 * fd_send.c - receiving file descriptors
 
5
 ***************************************************************************/
 
6
 
 
7
/*
 
8
 * Redistribution and use in source and binary forms, with or without
 
9
 * modification, are permitted provided that the following conditions are met:
 
10
 * 
 
11
 *  1. Redistributions of source code must retain the above copyright notice,
 
12
 *     this list of conditions and the following disclaimer.
 
13
 *  2. Redistributions in binary form must reproduce the above copyright
 
14
 *     notice, this list of conditions and the following disclaimer in the
 
15
 *     documentation and/or other materials provided with the distribution.
 
16
 *  3. The name of the author may not be used to endorse or promote products
 
17
 *     derived from this software without specific prior written permission.
 
18
 * 
 
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 
20
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
21
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 
22
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
23
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
24
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
25
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
26
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
27
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
28
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
 */
 
30
 
 
31
#ifndef _XPG4_2 /* Solaris sucks */
 
32
# define _XPG4_2
 
33
#endif
 
34
 
 
35
#include <stdlib.h>
 
36
#include <sys/types.h>
 
37
#include <sys/socket.h>
 
38
#include <sys/uio.h>
 
39
#include <assert.h>
 
40
#if defined(__FreeBSD__)
 
41
# include <sys/param.h> /* FreeBSD sucks */
 
42
#endif
 
43
 
 
44
#include "ancillary.h"
 
45
 
 
46
int
 
47
ancil_recv_fds_with_buffer(int sock, int *fds, unsigned n_fds, void *buffer)
 
48
{
 
49
    struct msghdr msghdr;
 
50
    char nothing;
 
51
    struct iovec nothing_ptr;
 
52
    struct cmsghdr *cmsg;
 
53
    int i;
 
54
 
 
55
    nothing_ptr.iov_base = &nothing;
 
56
    nothing_ptr.iov_len = 1;
 
57
    msghdr.msg_name = NULL;
 
58
    msghdr.msg_namelen = 0;
 
59
    msghdr.msg_iov = &nothing_ptr;
 
60
    msghdr.msg_iovlen = 1;
 
61
    msghdr.msg_flags = 0;
 
62
    msghdr.msg_control = buffer;
 
63
    msghdr.msg_controllen = sizeof(struct cmsghdr) + sizeof(int) * n_fds;
 
64
    cmsg = CMSG_FIRSTHDR(&msghdr);
 
65
    cmsg->cmsg_len = msghdr.msg_controllen;
 
66
    cmsg->cmsg_level = SOL_SOCKET;
 
67
    cmsg->cmsg_type = SCM_RIGHTS;
 
68
    for(i = 0; i < n_fds; i++)
 
69
        ((int *)CMSG_DATA(cmsg))[i] = -1;
 
70
    
 
71
    if(recvmsg(sock, &msghdr, 0) < 0)
 
72
        return(-1);
 
73
    for(i = 0; i < n_fds; i++)
 
74
        fds[i] = ((int *)CMSG_DATA(cmsg))[i];
 
75
    n_fds = (cmsg->cmsg_len - sizeof(struct cmsghdr)) / sizeof(int);
 
76
    return(n_fds);
 
77
}
 
78
 
 
79
#ifndef SPARE_RECV_FDS
 
80
int
 
81
ancil_recv_fds(int sock, int *fd, unsigned n_fds)
 
82
{
 
83
    ANCIL_FD_BUFFER(ANCIL_MAX_N_FDS) buffer;
 
84
 
 
85
    assert(n_fds <= ANCIL_MAX_N_FDS);
 
86
    return(ancil_recv_fds_with_buffer(sock, fd, n_fds, &buffer));
 
87
}
 
88
#endif /* SPARE_RECV_FDS */
 
89
 
 
90
#ifndef SPARE_RECV_FD
 
91
int
 
92
ancil_recv_fd(int sock, int *fd)
 
93
{
 
94
    ANCIL_FD_BUFFER(1) buffer;
 
95
 
 
96
    return(ancil_recv_fds_with_buffer(sock, fd, 1, &buffer) == 1 ? 0 : -1);
 
97
}
 
98
#endif /* SPARE_RECV_FD */