38 #ifndef __DEV_VIRTIO_FS9P_HH__ 39 #define __DEV_VIRTIO_FS9P_HH__ 48 struct VirtIO9PBaseParams;
63 template <
typename T>
inline T
67 template <
typename T>
inline T
150 :
VirtQueue(proxy, bo, size), parent(_parent) {}
155 std::string
name()
const {
return parent.name() +
".queue"; }
203 struct VirtIO9PProxyParams;
223 size_t size)
override;
226 void serverDataReady();
237 virtual ssize_t read(uint8_t *
data,
size_t len) = 0;
247 virtual ssize_t write(
const uint8_t *
data,
size_t len) = 0;
259 void readAll(uint8_t *
data,
size_t len);
270 void writeAll(
const uint8_t *
data,
size_t len);
284 struct VirtIO9PDiodParams;
305 ssize_t read(uint8_t *
data,
size_t len);
306 ssize_t write(
const uint8_t *
data,
size_t len);
308 void terminateDiod();
315 :
PollEvent(fd, event), parent(_parent) {}
319 void process(
int revent);
336 struct VirtIO9PSocketParams;
355 void connectSocket();
358 void socketDisconnect();
360 ssize_t read(uint8_t *
data,
size_t len);
361 ssize_t write(
const uint8_t *
data,
size_t len);
368 :
PollEvent(fd, event), parent(_parent) {}
372 void process(
int revent);
384 #endif // __DEV_VIRTIO_FS9P_HH__ This class implements a VirtIO transport layer for the 9p network file system.
Base class for all VirtIO-based devices.
VirtIO 9p proxy that communicates with a 9p server over tcp sockets.
struct P9MsgHeader M5_ATTR_PACKED
std::unique_ptr< DiodDataEvent > dataEvent
VirtIO9PSocketParams Params
virtual ~SocketDataEvent()
std::map< P9Tag, VirtDescriptor * > pendingTransactions
Map between 9p transaction tags and descriptors where they appeared.
T p9toh(T v)
Convert p9 byte order (LE) to host byte order.
int fd_to_diod
fd for data pipe going to diod (write end)
VirtIO9PProxyParams Params
int fd_from_diod
fd for data pipe coming from diod (read end)
std::unique_ptr< SocketDataEvent > dataEvent
bool deviceUsed
Bool to track if the device has been used or not.
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
VirtIO descriptor (chain) wrapper.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
VirtIO9PBaseParams Params
This object is a proxy for a port or other object which implements the functional response protocol...
uint16_t DeviceId
Device Type (sometimes known as subsystem ID)
VirtIO9PDiodParams Params
T htop9(T v)
Convert host byte order to p9 byte order (LE)
std::ostream CheckpointOut
VirtIO 9p configuration structure.
int diod_pid
PID of diod process.
FSQueue(PortProxy &proxy, ByteOrder bo, uint16_t size, VirtIO9PBase &_parent)
SocketDataEvent(VirtIO9PSocket &_parent, int fd, int event)
void unserialize(ThreadContext &tc, CheckpointIn &cp)
Base wrapper around a virtqueue.
VirtIO 9p proxy that communicates with the diod 9p server using pipes.
DiodDataEvent(VirtIO9PDiod &_parent, int fd, int event)
Virtqueue for 9p requests.
std::unique_ptr< Config > config
Currently active configuration (host byte order)
int fdSocket
Socket connected to the 9p server.
VirtIO 9p proxy base class.