~ubuntu-branches/ubuntu/utopic/mpd/utopic-proposed

« back to all changes in this revision

Viewing changes to src/system/fd_util.h

  • Committer: Package Import Robot
  • Author(s): Steve Kowalik
  • Date: 2013-11-12 18:17:40 UTC
  • mfrom: (2.2.36 sid)
  • Revision ID: package-import@ubuntu.com-20131112181740-72aa4zihehoobedp
Tags: 0.18.3-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Add libmp3lame-dev to Build-Depends, and enable LAME.
  - Read the user for the daemon from the config file in the init script.
  - Move avahi-daemon from Suggests to Recommends.
  - Added apport hook to include user configuration file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
 
3
 * http://www.musicpd.org
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 *
 
9
 * - Redistributions of source code must retain the above copyright
 
10
 * notice, this list of conditions and the following disclaimer.
 
11
 *
 
12
 * - Redistributions in binary form must reproduce the above copyright
 
13
 * notice, this list of conditions and the following disclaimer in the
 
14
 * documentation and/or other materials provided with the distribution.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
17
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
18
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
19
 * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
 
20
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
21
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
22
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
23
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
24
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
25
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
26
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
27
 */
 
28
 
 
29
/*
 
30
 * This library provides easy helper functions for working with file
 
31
 * descriptors.  It has wrappers for taking advantage of Linux 2.6
 
32
 * specific features like O_CLOEXEC.
 
33
 *
 
34
 */
 
35
 
 
36
#ifndef FD_UTIL_H
 
37
#define FD_UTIL_H
 
38
 
 
39
#include "check.h"
 
40
 
 
41
#include <stdbool.h>
 
42
#include <stddef.h>
 
43
 
 
44
#ifndef WIN32
 
45
#if !defined(_GNU_SOURCE) && (defined(HAVE_PIPE2) || defined(HAVE_ACCEPT4))
 
46
#define _GNU_SOURCE
 
47
#endif
 
48
 
 
49
#include <sys/types.h>
 
50
#endif
 
51
 
 
52
struct sockaddr;
 
53
 
 
54
#ifdef __cplusplus
 
55
extern "C" {
 
56
#endif
 
57
 
 
58
/**
 
59
 * Wrapper for dup(), which sets the CLOEXEC flag on the new
 
60
 * descriptor.
 
61
 */
 
62
int
 
63
dup_cloexec(int oldfd);
 
64
 
 
65
/**
 
66
 * Wrapper for open(), which sets the CLOEXEC flag (atomically if
 
67
 * supported by the OS).
 
68
 */
 
69
int
 
70
open_cloexec(const char *path_fs, int flags, int mode);
 
71
 
 
72
/**
 
73
 * Wrapper for pipe(), which sets the CLOEXEC flag (atomically if
 
74
 * supported by the OS).
 
75
 */
 
76
int
 
77
pipe_cloexec(int fd[2]);
 
78
 
 
79
/**
 
80
 * Wrapper for pipe(), which sets the CLOEXEC flag (atomically if
 
81
 * supported by the OS).
 
82
 *
 
83
 * On systems that supports it (everybody except for Windows), it also
 
84
 * sets the NONBLOCK flag.
 
85
 */
 
86
int
 
87
pipe_cloexec_nonblock(int fd[2]);
 
88
 
 
89
#ifndef WIN32
 
90
 
 
91
/**
 
92
 * Wrapper for socketpair(), which sets the CLOEXEC flag (atomically
 
93
 * if supported by the OS).
 
94
 */
 
95
int
 
96
socketpair_cloexec(int domain, int type, int protocol, int sv[2]);
 
97
 
 
98
/**
 
99
 * Wrapper for socketpair(), which sets the flags CLOEXEC and NONBLOCK
 
100
 * (atomically if supported by the OS).
 
101
 */
 
102
int
 
103
socketpair_cloexec_nonblock(int domain, int type, int protocol, int sv[2]);
 
104
 
 
105
#endif
 
106
 
 
107
/**
 
108
 * Wrapper for socket(), which sets the CLOEXEC and the NONBLOCK flag
 
109
 * (atomically if supported by the OS).
 
110
 */
 
111
int
 
112
socket_cloexec_nonblock(int domain, int type, int protocol);
 
113
 
 
114
/**
 
115
 * Wrapper for accept(), which sets the CLOEXEC and the NONBLOCK flags
 
116
 * (atomically if supported by the OS).
 
117
 */
 
118
int
 
119
accept_cloexec_nonblock(int fd, struct sockaddr *address,
 
120
                        size_t *address_length_r);
 
121
 
 
122
 
 
123
#ifndef WIN32
 
124
 
 
125
struct msghdr;
 
126
 
 
127
/**
 
128
 * Wrapper for recvmsg(), which sets the CLOEXEC flag (atomically if
 
129
 * supported by the OS).
 
130
 */
 
131
ssize_t
 
132
recvmsg_cloexec(int sockfd, struct msghdr *msg, int flags);
 
133
 
 
134
#endif
 
135
 
 
136
#ifdef HAVE_INOTIFY_INIT
 
137
 
 
138
/**
 
139
 * Wrapper for inotify_init(), which sets the CLOEXEC flag (atomically
 
140
 * if supported by the OS).
 
141
 */
 
142
int
 
143
inotify_init_cloexec(void);
 
144
 
 
145
#endif
 
146
 
 
147
#ifdef USE_EVENTFD
 
148
 
 
149
/**
 
150
 * Wrapper for eventfd() which sets the flags CLOEXEC and NONBLOCK
 
151
 * flag (atomically if supported by the OS).
 
152
 */
 
153
int
 
154
eventfd_cloexec_nonblock(unsigned initval, int flags);
 
155
 
 
156
#endif
 
157
 
 
158
/**
 
159
 * Portable wrapper for close(); use closesocket() on WIN32/WinSock.
 
160
 */
 
161
int
 
162
close_socket(int fd);
 
163
 
 
164
#ifdef __cplusplus
 
165
} /* extern "C" */
 
166
#endif
 
167
 
 
168
#endif