blob: a40a73a7b71da359574bf4061d80340b1caa30a4 [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
K. Y. Srinivasanb2a5a582011-05-10 07:55:30 -070021 * K. Y. Srinivasan <kys@microsoft.com>
Hank Janssen3e7ee492009-07-13 16:02:34 -070022 *
23 */
Hank Janssen0a466182011-03-29 13:58:47 -070024#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Hank Janssen3e7ee492009-07-13 16:02:34 -070025
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070026#include <linux/kernel.h>
27#include <linux/mm.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070028#include <linux/hyperv.h>
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -080029#include <linux/uio.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070030
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070031#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070032
K. Y. Srinivasan6fdf3b22012-12-01 06:46:32 -080033void hv_begin_read(struct hv_ring_buffer_info *rbi)
34{
35 rbi->ring_buffer->interrupt_mask = 1;
Jason Wang35848f62013-06-18 13:04:23 +080036 mb();
K. Y. Srinivasan6fdf3b22012-12-01 06:46:32 -080037}
38
39u32 hv_end_read(struct hv_ring_buffer_info *rbi)
40{
41 u32 read;
42 u32 write;
43
44 rbi->ring_buffer->interrupt_mask = 0;
Jason Wang35848f62013-06-18 13:04:23 +080045 mb();
K. Y. Srinivasan6fdf3b22012-12-01 06:46:32 -080046
47 /*
48 * Now check to see if the ring buffer is still empty.
49 * If it is not, we raced and we need to process new
50 * incoming messages.
51 */
52 hv_get_ringbuffer_availbytes(rbi, &read, &write);
53
54 return read;
55}
56
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -080057/*
58 * When we write to the ring buffer, check if the host needs to
59 * be signaled. Here is the details of this protocol:
60 *
61 * 1. The host guarantees that while it is draining the
62 * ring buffer, it will set the interrupt_mask to
63 * indicate it does not need to be interrupted when
64 * new data is placed.
65 *
66 * 2. The host guarantees that it will completely drain
67 * the ring buffer before exiting the read loop. Further,
68 * once the ring buffer is empty, it will clear the
69 * interrupt_mask and re-check to see if new data has
70 * arrived.
71 */
72
73static bool hv_need_to_signal(u32 old_write, struct hv_ring_buffer_info *rbi)
74{
Jason Wang35848f62013-06-18 13:04:23 +080075 mb();
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -080076 if (rbi->ring_buffer->interrupt_mask)
77 return false;
78
Jason Wange91e84f2013-06-20 12:58:57 +080079 /* check interrupt_mask before read_index */
80 rmb();
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -080081 /*
82 * This is the only case we need to signal when the
83 * ring transitions from being empty to non-empty.
84 */
85 if (old_write == rbi->ring_buffer->read_index)
86 return true;
87
88 return false;
89}
90
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -080091/*
92 * To optimize the flow management on the send-side,
93 * when the sender is blocked because of lack of
94 * sufficient space in the ring buffer, potential the
95 * consumer of the ring buffer can signal the producer.
96 * This is controlled by the following parameters:
97 *
98 * 1. pending_send_sz: This is the size in bytes that the
99 * producer is trying to send.
100 * 2. The feature bit feat_pending_send_sz set to indicate if
101 * the consumer of the ring will signal when the ring
102 * state transitions from being full to a state where
103 * there is room for the producer to send the pending packet.
104 */
105
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700106static bool hv_need_to_signal_on_read(struct hv_ring_buffer_info *rbi)
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800107{
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800108 u32 cur_write_sz;
109 u32 r_size;
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700110 u32 write_loc;
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800111 u32 read_loc = rbi->ring_buffer->read_index;
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700112 u32 pending_sz;
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800113
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700114 /*
115 * Issue a full memory barrier before making the signaling decision.
116 * Here is the reason for having this barrier:
117 * If the reading of the pend_sz (in this function)
118 * were to be reordered and read before we commit the new read
119 * index (in the calling function) we could
120 * have a problem. If the host were to set the pending_sz after we
121 * have sampled pending_sz and go to sleep before we commit the
122 * read index, we could miss sending the interrupt. Issue a full
123 * memory barrier to address this.
124 */
125 mb();
126
127 pending_sz = rbi->ring_buffer->pending_send_sz;
128 write_loc = rbi->ring_buffer->write_index;
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800129 /* If the other end is not blocked on write don't bother. */
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800130 if (pending_sz == 0)
131 return false;
132
133 r_size = rbi->ring_datasize;
134 cur_write_sz = write_loc >= read_loc ? r_size - (write_loc - read_loc) :
135 read_loc - write_loc;
136
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700137 if (cur_write_sz >= pending_sz)
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800138 return true;
139
140 return false;
141}
Hank Janssen3e7ee492009-07-13 16:02:34 -0700142
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800143/* Get the next write location for the specified ring buffer. */
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700144static inline u32
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700145hv_get_next_write_location(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700146{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800147 u32 next = ring_info->ring_buffer->write_index;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700148
Hank Janssen3e7ee492009-07-13 16:02:34 -0700149 return next;
150}
151
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800152/* Set the next write location for the specified ring buffer. */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700153static inline void
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700154hv_set_next_write_location(struct hv_ring_buffer_info *ring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800155 u32 next_write_location)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700156{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800157 ring_info->ring_buffer->write_index = next_write_location;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700158}
159
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800160/* Get the next read location for the specified ring buffer. */
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700161static inline u32
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700162hv_get_next_read_location(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700163{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800164 u32 next = ring_info->ring_buffer->read_index;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700165
Hank Janssen3e7ee492009-07-13 16:02:34 -0700166 return next;
167}
168
K. Y. Srinivasanb2a5a582011-05-10 07:55:30 -0700169/*
K. Y. Srinivasanb2a5a582011-05-10 07:55:30 -0700170 * Get the next read location + offset for the specified ring buffer.
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800171 * This allows the caller to skip.
K. Y. Srinivasanb2a5a582011-05-10 07:55:30 -0700172 */
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700173static inline u32
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700174hv_get_next_readlocation_withoffset(struct hv_ring_buffer_info *ring_info,
Haiyang Zhang1ac58642010-11-08 14:04:47 -0800175 u32 offset)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700176{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800177 u32 next = ring_info->ring_buffer->read_index;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700178
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800179 next += offset;
180 next %= ring_info->ring_datasize;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700181
182 return next;
183}
184
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800185/* Set the next read location for the specified ring buffer. */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700186static inline void
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700187hv_set_next_read_location(struct hv_ring_buffer_info *ring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800188 u32 next_read_location)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700189{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800190 ring_info->ring_buffer->read_index = next_read_location;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700191}
192
193
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800194/* Get the start of the ring buffer. */
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700195static inline void *
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700196hv_get_ring_buffer(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700197{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800198 return (void *)ring_info->ring_buffer->buffer;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700199}
200
201
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800202/* Get the size of the ring buffer. */
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700203static inline u32
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700204hv_get_ring_buffersize(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700205{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800206 return ring_info->ring_datasize;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700207}
208
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800209/* Get the read and write indices as u64 of the specified ring buffer. */
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700210static inline u64
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700211hv_get_ring_bufferindices(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700212{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800213 return (u64)ring_info->ring_buffer->write_index << 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700214}
215
K. Y. Srinivasan8f1136a2011-05-10 07:55:31 -0700216/*
K. Y. Srinivasan8f1136a2011-05-10 07:55:31 -0700217 * Helper routine to copy to source from ring buffer.
218 * Assume there is enough room. Handles wrap-around in src case only!!
K. Y. Srinivasan8f1136a2011-05-10 07:55:31 -0700219 */
220static u32 hv_copyfrom_ringbuffer(
221 struct hv_ring_buffer_info *ring_info,
222 void *dest,
223 u32 destlen,
224 u32 start_read_offset)
225{
226 void *ring_buffer = hv_get_ring_buffer(ring_info);
227 u32 ring_buffer_size = hv_get_ring_buffersize(ring_info);
228
229 u32 frag_len;
230
231 /* wrap-around detected at the src */
232 if (destlen > ring_buffer_size - start_read_offset) {
233 frag_len = ring_buffer_size - start_read_offset;
234
235 memcpy(dest, ring_buffer + start_read_offset, frag_len);
236 memcpy(dest + frag_len, ring_buffer, destlen - frag_len);
237 } else
238
239 memcpy(dest, ring_buffer + start_read_offset, destlen);
240
241
242 start_read_offset += destlen;
243 start_read_offset %= ring_buffer_size;
244
245 return start_read_offset;
246}
247
248
K. Y. Srinivasan75815782011-05-10 07:55:32 -0700249/*
K. Y. Srinivasan75815782011-05-10 07:55:32 -0700250 * Helper routine to copy from source to ring buffer.
251 * Assume there is enough room. Handles wrap-around in dest case only!!
K. Y. Srinivasan75815782011-05-10 07:55:32 -0700252 */
253static u32 hv_copyto_ringbuffer(
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800254 struct hv_ring_buffer_info *ring_info,
255 u32 start_write_offset,
256 void *src,
K. Y. Srinivasan75815782011-05-10 07:55:32 -0700257 u32 srclen)
258{
259 void *ring_buffer = hv_get_ring_buffer(ring_info);
260 u32 ring_buffer_size = hv_get_ring_buffersize(ring_info);
261 u32 frag_len;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700262
K. Y. Srinivasan75815782011-05-10 07:55:32 -0700263 /* wrap-around detected! */
264 if (srclen > ring_buffer_size - start_write_offset) {
265 frag_len = ring_buffer_size - start_write_offset;
266 memcpy(ring_buffer + start_write_offset, src, frag_len);
267 memcpy(ring_buffer, src + frag_len, srclen - frag_len);
268 } else
269 memcpy(ring_buffer + start_write_offset, src, srclen);
270
271 start_write_offset += srclen;
272 start_write_offset %= ring_buffer_size;
273
274 return start_write_offset;
275}
Hank Janssen3e7ee492009-07-13 16:02:34 -0700276
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800277/* Get various debug metrics for the specified ring buffer. */
K. Y. Srinivasana75b61d2011-05-10 07:55:28 -0700278void hv_ringbuffer_get_debuginfo(struct hv_ring_buffer_info *ring_info,
Greg Kroah-Hartman80682b72010-07-27 11:37:32 -0700279 struct hv_ring_buffer_debug_info *debug_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700280{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800281 u32 bytes_avail_towrite;
282 u32 bytes_avail_toread;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700283
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800284 if (ring_info->ring_buffer) {
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700285 hv_get_ringbuffer_availbytes(ring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800286 &bytes_avail_toread,
287 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700288
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800289 debug_info->bytes_avail_toread = bytes_avail_toread;
290 debug_info->bytes_avail_towrite = bytes_avail_towrite;
Haiyang Zhang82f8bd42010-11-08 14:04:45 -0800291 debug_info->current_read_index =
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800292 ring_info->ring_buffer->read_index;
Haiyang Zhang82f8bd42010-11-08 14:04:45 -0800293 debug_info->current_write_index =
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800294 ring_info->ring_buffer->write_index;
Haiyang Zhang82f8bd42010-11-08 14:04:45 -0800295 debug_info->current_interrupt_mask =
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800296 ring_info->ring_buffer->interrupt_mask;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700297 }
298}
299
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800300/* Initialize the ring buffer. */
K. Y. Srinivasan72a95cb2011-05-10 07:55:21 -0700301int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800302 void *buffer, u32 buflen)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700303{
Greg Kroah-Hartman4a1b3ac2010-07-27 11:47:08 -0700304 if (sizeof(struct hv_ring_buffer) != PAGE_SIZE)
Bill Pemberton3324fb42010-05-05 15:27:49 -0400305 return -EINVAL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700306
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800307 memset(ring_info, 0, sizeof(struct hv_ring_buffer_info));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700308
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800309 ring_info->ring_buffer = (struct hv_ring_buffer *)buffer;
310 ring_info->ring_buffer->read_index =
311 ring_info->ring_buffer->write_index = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700312
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800313 /* Set the feature bit for enabling flow control. */
K. Y. Srinivasan046c7912014-09-05 17:29:12 -0700314 ring_info->ring_buffer->feature_bits.value = 1;
315
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800316 ring_info->ring_size = buflen;
317 ring_info->ring_datasize = buflen - sizeof(struct hv_ring_buffer);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700318
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800319 spin_lock_init(&ring_info->ring_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700320
321 return 0;
322}
323
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800324/* Cleanup the ring buffer. */
K. Y. Srinivasan2dba6882011-05-10 07:55:22 -0700325void hv_ringbuffer_cleanup(struct hv_ring_buffer_info *ring_info)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700326{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700327}
328
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800329/* Write to the ring buffer. */
K. Y. Srinivasan633c4dc2011-05-10 07:55:23 -0700330int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info,
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800331 struct kvec *kv_list, u32 kv_count, bool *signal, bool lock)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700332{
C. Bartlett4408f532010-02-03 15:34:27 +0000333 int i = 0;
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800334 u32 bytes_avail_towrite;
335 u32 bytes_avail_toread;
336 u32 totalbytes_towrite = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700337
K. Y. Srinivasan66a60542011-05-10 07:55:33 -0700338 u32 next_write_location;
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800339 u32 old_write;
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800340 u64 prev_indices = 0;
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800341 unsigned long flags = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700342
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800343 for (i = 0; i < kv_count; i++)
344 totalbytes_towrite += kv_list[i].iov_len;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700345
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800346 totalbytes_towrite += sizeof(u64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700347
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800348 if (lock)
349 spin_lock_irqsave(&outring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700350
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700351 hv_get_ringbuffer_availbytes(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800352 &bytes_avail_toread,
353 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700354
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800355 /*
356 * If there is only room for the packet, assume it is full.
357 * Otherwise, the next time around, we think the ring buffer
358 * is empty since the read index == write index.
359 */
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800360 if (bytes_avail_towrite <= totalbytes_towrite) {
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800361 if (lock)
362 spin_unlock_irqrestore(&outring_info->ring_lock, flags);
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700363 return -EAGAIN;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700364 }
365
Bill Pemberton454f18a2009-07-27 16:47:24 -0400366 /* Write to the ring buffer */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700367 next_write_location = hv_get_next_write_location(outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700368
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800369 old_write = next_write_location;
370
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800371 for (i = 0; i < kv_count; i++) {
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700372 next_write_location = hv_copyto_ringbuffer(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800373 next_write_location,
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800374 kv_list[i].iov_base,
375 kv_list[i].iov_len);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700376 }
377
Bill Pemberton454f18a2009-07-27 16:47:24 -0400378 /* Set previous packet start */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700379 prev_indices = hv_get_ring_bufferindices(outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700380
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700381 next_write_location = hv_copyto_ringbuffer(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800382 next_write_location,
383 &prev_indices,
Nicolas Palixb219b3f2009-07-30 17:37:23 +0200384 sizeof(u64));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700385
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800386 /* Issue a full memory barrier before updating the write index */
Jason Wang35848f62013-06-18 13:04:23 +0800387 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700388
Bill Pemberton454f18a2009-07-27 16:47:24 -0400389 /* Now, update the write location */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700390 hv_set_next_write_location(outring_info, next_write_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700391
Hank Janssen3e7ee492009-07-13 16:02:34 -0700392
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800393 if (lock)
394 spin_unlock_irqrestore(&outring_info->ring_lock, flags);
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800395
396 *signal = hv_need_to_signal(old_write, outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700397 return 0;
398}
399
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800400int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info,
401 void *buffer, u32 buflen, u32 *buffer_actual_len,
402 u64 *requestid, bool *signal, bool raw)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700403{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800404 u32 bytes_avail_towrite;
405 u32 bytes_avail_toread;
406 u32 next_read_location = 0;
407 u64 prev_indices = 0;
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800408 struct vmpacket_descriptor desc;
409 u32 offset;
410 u32 packetlen;
411 int ret = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700412
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800413 if (buflen <= 0)
Bill Pembertona16e1482010-05-05 15:27:50 -0400414 return -EINVAL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700415
Hank Janssen3e7ee492009-07-13 16:02:34 -0700416
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800417 *buffer_actual_len = 0;
418 *requestid = 0;
419
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700420 hv_get_ringbuffer_availbytes(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800421 &bytes_avail_toread,
422 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700423
Bill Pemberton454f18a2009-07-27 16:47:24 -0400424 /* Make sure there is something to read */
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800425 if (bytes_avail_toread < sizeof(desc)) {
426 /*
427 * No error is set when there is even no header, drivers are
428 * supposed to analyze buffer_actual_len.
429 */
K. Y. Srinivasan3eba9a72016-01-27 22:29:44 -0800430 return ret;
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800431 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700432
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800433 next_read_location = hv_get_next_read_location(inring_info);
434 next_read_location = hv_copyfrom_ringbuffer(inring_info, &desc,
435 sizeof(desc),
436 next_read_location);
437
438 offset = raw ? 0 : (desc.offset8 << 3);
439 packetlen = (desc.len8 << 3) - offset;
440 *buffer_actual_len = packetlen;
441 *requestid = desc.trans_id;
442
K. Y. Srinivasan3eba9a72016-01-27 22:29:44 -0800443 if (bytes_avail_toread < packetlen + offset)
444 return -EAGAIN;
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800445
K. Y. Srinivasan3eba9a72016-01-27 22:29:44 -0800446 if (packetlen > buflen)
447 return -ENOBUFS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700448
Haiyang Zhang1ac58642010-11-08 14:04:47 -0800449 next_read_location =
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700450 hv_get_next_readlocation_withoffset(inring_info, offset);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700451
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700452 next_read_location = hv_copyfrom_ringbuffer(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800453 buffer,
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800454 packetlen,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800455 next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700456
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700457 next_read_location = hv_copyfrom_ringbuffer(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800458 &prev_indices,
C. Bartlett4408f532010-02-03 15:34:27 +0000459 sizeof(u64),
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800460 next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700461
Vitaly Kuznetsov822f18d2015-12-14 19:01:57 -0800462 /*
463 * Make sure all reads are done before we update the read index since
464 * the writer may start writing to the read area once the read index
465 * is updated.
466 */
Jason Wang35848f62013-06-18 13:04:23 +0800467 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700468
Bill Pemberton454f18a2009-07-27 16:47:24 -0400469 /* Update the read index */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700470 hv_set_next_read_location(inring_info, next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700471
K. Y. Srinivasana389fcf2016-04-02 16:17:38 -0700472 *signal = hv_need_to_signal_on_read(inring_info);
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800473
Vitaly Kuznetsov940b68e2015-12-14 19:02:01 -0800474 return ret;
Vitaly Kuznetsovb5f53dd2015-12-14 19:01:59 -0800475}