blob: 14d45c70056ea2a813e5a450e543b011c7c826e5 [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. Srinivasanc1721132016-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. Srinivasanc1721132016-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. Srinivasanc1721132016-04-02 16:17:38 -0700112 u32 pending_sz;
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800113
K. Y. Srinivasanc1721132016-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 Kuznetsov3807acb2015-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. Srinivasanc1721132016-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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 Kuznetsov3807acb2015-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. Srinivasan011a7c32014-02-01 19:02:20 -0800331 struct kvec *kv_list, u32 kv_count, bool *signal)
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;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700341 unsigned long flags;
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
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800348 spin_lock_irqsave(&outring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700349
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700350 hv_get_ringbuffer_availbytes(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800351 &bytes_avail_toread,
352 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700353
Vitaly Kuznetsov3807acb2015-12-14 19:01:57 -0800354 /*
355 * If there is only room for the packet, assume it is full.
356 * Otherwise, the next time around, we think the ring buffer
357 * is empty since the read index == write index.
358 */
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800359 if (bytes_avail_towrite <= totalbytes_towrite) {
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800360 spin_unlock_irqrestore(&outring_info->ring_lock, flags);
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700361 return -EAGAIN;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700362 }
363
Bill Pemberton454f18a2009-07-27 16:47:24 -0400364 /* Write to the ring buffer */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700365 next_write_location = hv_get_next_write_location(outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700366
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800367 old_write = next_write_location;
368
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800369 for (i = 0; i < kv_count; i++) {
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700370 next_write_location = hv_copyto_ringbuffer(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800371 next_write_location,
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800372 kv_list[i].iov_base,
373 kv_list[i].iov_len);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700374 }
375
Bill Pemberton454f18a2009-07-27 16:47:24 -0400376 /* Set previous packet start */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700377 prev_indices = hv_get_ring_bufferindices(outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700378
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700379 next_write_location = hv_copyto_ringbuffer(outring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800380 next_write_location,
381 &prev_indices,
Nicolas Palixb219b3f2009-07-30 17:37:23 +0200382 sizeof(u64));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700383
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800384 /* Issue a full memory barrier before updating the write index */
Jason Wang35848f62013-06-18 13:04:23 +0800385 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700386
Bill Pemberton454f18a2009-07-27 16:47:24 -0400387 /* Now, update the write location */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700388 hv_set_next_write_location(outring_info, next_write_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700389
Hank Janssen3e7ee492009-07-13 16:02:34 -0700390
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800391 spin_unlock_irqrestore(&outring_info->ring_lock, flags);
K. Y. Srinivasan98fa8cf2012-12-01 06:46:36 -0800392
393 *signal = hv_need_to_signal(old_write, outring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700394 return 0;
395}
396
397
Vitaly Kuznetsov3807acb2015-12-14 19:01:57 -0800398/* Read without advancing the read index. */
K. Y. Srinivasana89186c2011-05-10 07:55:24 -0700399int hv_ringbuffer_peek(struct hv_ring_buffer_info *Inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800400 void *Buffer, u32 buflen)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700401{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800402 u32 bytes_avail_towrite;
403 u32 bytes_avail_toread;
404 u32 next_read_location = 0;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700405 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700406
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800407 spin_lock_irqsave(&Inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700408
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700409 hv_get_ringbuffer_availbytes(Inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800410 &bytes_avail_toread,
411 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700412
Bill Pemberton454f18a2009-07-27 16:47:24 -0400413 /* Make sure there is something to read */
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800414 if (bytes_avail_toread < buflen) {
Hank Janssen3e7ee492009-07-13 16:02:34 -0700415
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800416 spin_unlock_irqrestore(&Inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700417
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700418 return -EAGAIN;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700419 }
420
Bill Pemberton454f18a2009-07-27 16:47:24 -0400421 /* Convert to byte offset */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700422 next_read_location = hv_get_next_read_location(Inring_info);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700423
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700424 next_read_location = hv_copyfrom_ringbuffer(Inring_info,
C. Bartlett4408f532010-02-03 15:34:27 +0000425 Buffer,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800426 buflen,
427 next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700428
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800429 spin_unlock_irqrestore(&Inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700430
431 return 0;
432}
433
434
Vitaly Kuznetsov3807acb2015-12-14 19:01:57 -0800435/* Read and advance the read index. */
K. Y. Srinivasan38397c82011-05-10 07:55:25 -0700436int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, void *buffer,
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800437 u32 buflen, u32 offset, bool *signal)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700438{
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800439 u32 bytes_avail_towrite;
440 u32 bytes_avail_toread;
441 u32 next_read_location = 0;
442 u64 prev_indices = 0;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700443 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700444
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800445 if (buflen <= 0)
Bill Pembertona16e1482010-05-05 15:27:50 -0400446 return -EINVAL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700447
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800448 spin_lock_irqsave(&inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700449
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700450 hv_get_ringbuffer_availbytes(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800451 &bytes_avail_toread,
452 &bytes_avail_towrite);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700453
Bill Pemberton454f18a2009-07-27 16:47:24 -0400454 /* Make sure there is something to read */
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800455 if (bytes_avail_toread < buflen) {
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800456 spin_unlock_irqrestore(&inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700457
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700458 return -EAGAIN;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700459 }
460
Haiyang Zhang1ac58642010-11-08 14:04:47 -0800461 next_read_location =
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700462 hv_get_next_readlocation_withoffset(inring_info, offset);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700463
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700464 next_read_location = hv_copyfrom_ringbuffer(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800465 buffer,
466 buflen,
467 next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700468
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700469 next_read_location = hv_copyfrom_ringbuffer(inring_info,
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800470 &prev_indices,
C. Bartlett4408f532010-02-03 15:34:27 +0000471 sizeof(u64),
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800472 next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700473
Vitaly Kuznetsov3807acb2015-12-14 19:01:57 -0800474 /*
475 * Make sure all reads are done before we update the read index since
476 * the writer may start writing to the read area once the read index
477 * is updated.
478 */
Jason Wang35848f62013-06-18 13:04:23 +0800479 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700480
Bill Pemberton454f18a2009-07-27 16:47:24 -0400481 /* Update the read index */
K. Y. Srinivasan2b8a9122011-05-10 07:55:29 -0700482 hv_set_next_read_location(inring_info, next_read_location);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700483
Haiyang Zhangfc8c72e2010-11-08 14:04:46 -0800484 spin_unlock_irqrestore(&inring_info->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700485
K. Y. Srinivasanc1721132016-04-02 16:17:38 -0700486 *signal = hv_need_to_signal_on_read(inring_info);
K. Y. Srinivasanc2b8e522012-12-01 06:46:57 -0800487
Hank Janssen3e7ee492009-07-13 16:02:34 -0700488 return 0;
489}