-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfd_state.h
64 lines (55 loc) · 1.83 KB
/
fd_state.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Copyright 2017 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/*
* Author: [email protected] (Neal Cardwell)
*
* Interface for tracking file descriptors in the kernel under test.
*/
#ifndef __FD_STATE_H__
#define __FD_STATE_H__
#include "types.h"
/* The types of file descriptor objects packetdrill can test. */
enum fd_type_t {
FD_SOCKET = 1,
FD_FILE,
FD_PIPE,
FD_EPOLL,
};
struct state;
struct fd_state;
/* Global info about a particular kind of file descriptor. */
struct fd_ops {
enum fd_type_t type; /* type of this file descriptor */
/* Handler for closing fd. */
void (*close)(struct state *state, struct fd_state *fd);
};
/* State for a file descriptor during script execution. */
struct fd_state {
struct fd_ops *ops; /* info/ops for this type of fd */
int script_fd; /* file descriptor in the script source */
int live_fd; /* file descriptor in packetdrill runtime */
bool is_closed; /* has app called close(2) ? */
struct fd_state *next; /* next fd in linked list */
};
/* To cast any type of fd to the base classs. */
static inline struct fd_state *to_fd(void *fd)
{
return (struct fd_state *)fd;
}
#endif /* __FD_STATE_H__ */