]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libcasper/libcasper/libcasper.h
Merge clang trunk r321414 to contrib/llvm.
[FreeBSD/FreeBSD.git] / lib / libcasper / libcasper / libcasper.h
1 /*-
2  * Copyright (c) 2012-2013 The FreeBSD Foundation
3  * Copyright (c) 2015-2017 Mariusz Zaborski <oshogbo@FreeBSD.org>
4  * All rights reserved.
5  *
6  * This software was developed by Pawel Jakub Dawidek under sponsorship from
7  * the FreeBSD Foundation.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32
33 #ifndef _LIBCASPER_H_
34 #define _LIBCASPER_H_
35
36 #ifdef HAVE_CASPER
37 #define WITH_CASPER
38 #endif
39
40 #include <sys/types.h>
41 #include <sys/nv.h>
42
43 #include <stdlib.h>
44 #include <unistd.h>
45
46 #ifndef _NVLIST_T_DECLARED
47 #define _NVLIST_T_DECLARED
48 struct nvlist;
49
50 typedef struct nvlist nvlist_t;
51 #endif
52
53 #ifndef _CAP_CHANNEL_T_DECLARED
54 #define _CAP_CHANNEL_T_DECLARED
55 #ifdef WITH_CASPER
56 struct cap_channel;
57
58 typedef struct cap_channel cap_channel_t;
59 #define CASPER_SUPPORT  (1)
60 #else
61 struct cap_channel {
62         int cch_fd;
63 };
64 typedef struct cap_channel cap_channel_t;
65 #define CASPER_SUPPORT  (0)
66 #endif /* ! WITH_CASPER */
67 #endif /* ! _CAP_CHANNEL_T_DECLARED */
68
69 /*
70  * The functions opens unrestricted communication channel to Casper.
71  */
72 #ifdef WITH_CASPER
73 cap_channel_t *cap_init(void);
74 #else
75 static inline cap_channel_t *
76 cap_init(void)
77 {
78         cap_channel_t *chan;
79
80         chan = malloc(sizeof(*chan));
81         if (chan != NULL) {
82                 chan->cch_fd = -1;
83         }
84         return (chan);
85 }
86 #endif
87
88 /*
89  * The functions to communicate with service.
90  */
91 #ifdef WITH_CASPER
92 cap_channel_t   *cap_service_open(const cap_channel_t *chan, const char *name);
93 int              cap_service_limit(const cap_channel_t *chan,
94                     const char * const *names, size_t nnames);
95 #else
96 #define cap_service_open(chan, name)            (cap_init())
97 #define cap_service_limit(chan, names, nnames)  (0)
98 #endif
99
100 /*
101  * The function creates cap_channel_t based on the given socket.
102  */
103 #ifdef WITH_CASPER
104 cap_channel_t *cap_wrap(int sock);
105 #else
106 static inline cap_channel_t *
107 cap_wrap(int sock)
108 {
109         cap_channel_t *chan;
110
111         chan = cap_init();
112         if (chan != NULL) {
113                 chan->cch_fd = sock;
114         }
115         return (chan);
116 }
117 #endif
118
119 /*
120  * The function returns communication socket and frees cap_channel_t.
121  */
122 #ifdef WITH_CASPER
123 int     cap_unwrap(cap_channel_t *chan);
124 #else
125 #define cap_unwrap(chan)        (chan->cch_fd)
126 #endif
127
128 /*
129  * The function clones the given capability.
130  */
131 #ifdef WITH_CASPER
132 cap_channel_t *cap_clone(const cap_channel_t *chan);
133 #else
134 static inline cap_channel_t *
135 cap_clone(const cap_channel_t *chan)
136 {
137         cap_channel_t *newchan;
138
139         newchan = cap_init();
140         if (newchan == NULL) {
141                 return (NULL);
142         }
143
144         if (chan->cch_fd == -1) {
145                 newchan->cch_fd = -1;
146         } else {
147                 newchan->cch_fd = dup(chan->cch_fd);
148                 if (newchan->cch_fd < 0) {
149                         free(newchan);
150                         newchan = NULL;
151                 }
152         }
153
154         return (newchan);
155 }
156 #endif
157
158 /*
159  * The function closes the given capability.
160  */
161 #ifdef WITH_CASPER
162 void    cap_close(cap_channel_t *chan);
163 #else
164 static inline void
165 cap_close(cap_channel_t *chan)
166 {
167
168         if (chan->cch_fd >= 0) {
169                 close(chan->cch_fd);
170         }
171         free(chan);
172 }
173 #endif
174
175 /*
176  * The function returns socket descriptor associated with the given
177  * cap_channel_t for use with select(2)/kqueue(2)/etc.
178  */
179 #ifdef WITH_CASPER
180 int     cap_sock(const cap_channel_t *chan);
181 #else
182 #define cap_sock(chan)  (chan->cch_fd)
183 #endif
184
185 /*
186  * The function limits the given capability.
187  * It always destroys 'limits' on return.
188  */
189 #ifdef WITH_CASPER
190 int     cap_limit_set(const cap_channel_t *chan, nvlist_t *limits);
191 #else
192 #define cap_limit_set(chan, limits)     (0)
193 #endif
194
195 /*
196  * The function returns current limits of the given capability.
197  */
198 #ifdef WITH_CASPER
199 int     cap_limit_get(const cap_channel_t *chan, nvlist_t **limitsp);
200 #else
201 static inline int
202 cap_limit_get(const cap_channel_t *chan __unused, nvlist_t **limitsp)
203 {
204
205         *limitsp = nvlist_create(0);
206         return (0);
207 }
208 #endif
209
210 /*
211  * Function sends nvlist over the given capability.
212  */
213 #ifdef WITH_CASPER
214 int     cap_send_nvlist(const cap_channel_t *chan, const nvlist_t *nvl);
215 #else
216 #define cap_send_nvlist(chan, nvl)      (0)
217 #endif
218
219 /*
220  * Function receives nvlist over the given capability.
221  */
222 #ifdef WITH_CASPER
223 nvlist_t *cap_recv_nvlist(const cap_channel_t *chan, int flags);
224 #else
225 #define cap_recv_nvlist(chan, flags)    (0)
226 #endif
227
228 /*
229  * Function sends the given nvlist, destroys it and receives new nvlist in
230  * response over the given capability.
231  */
232 #ifdef WITH_CASPER
233 nvlist_t *cap_xfer_nvlist(const cap_channel_t *chan, nvlist_t *nvl, int flags);
234 #else
235 static inline nvlist_t *
236 cap_xfer_nvlist(const cap_channel_t *chan __unused, nvlist_t *nvl, int flags)
237 {
238
239         nvlist_destroy(nvl);
240         return (nvlist_create(flags));
241 }
242 #endif
243
244 #endif  /* !_LIBCASPER_H_ */