iPXE
iobpad.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
18 *
19 * You can also choose to distribute this program under the terms of
20 * the Unmodified Binary Distribution Licence (as given in the file
21 * COPYING.UBDL), provided that you have satisfied its requirements.
22 */
23
24FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25FILE_SECBOOT ( PERMITTED );
26
27/**
28 * @file
29 *
30 * I/O buffer padding
31 *
32 */
33
34#include <string.h>
35#include <ipxe/iobuf.h>
36
37/**
38 * Pad I/O buffer
39 *
40 * @v iobuf I/O buffer
41 * @v min_len Minimum length
42 *
43 * This function pads and aligns I/O buffers, for devices that
44 * aren't capable of padding in hardware, or that require specific
45 * alignment in TX buffers. The packet data will end up aligned to a
46 * multiple of @c IOB_ALIGN.
47 *
48 * @c min_len must not exceed @v IOB_ZLEN.
49 */
50void iob_pad ( struct io_buffer *iobuf, size_t min_len ) {
51 void *data;
52 size_t len;
53 size_t headroom;
54 signed int pad_len;
55
56 assert ( min_len <= IOB_ZLEN );
57
58 /* Move packet data to start of I/O buffer. This will both
59 * align the data (since I/O buffers are aligned to
60 * IOB_ALIGN) and give us sufficient space for the
61 * zero-padding
62 */
63 data = iobuf->data;
64 len = iob_len ( iobuf );
65 headroom = iob_headroom ( iobuf );
66 iob_push ( iobuf, headroom );
67 memmove ( iobuf->data, data, len );
68 iob_unput ( iobuf, headroom );
69
70 /* Pad to minimum packet length */
71 pad_len = ( min_len - iob_len ( iobuf ) );
72 if ( pad_len > 0 )
73 memset ( iob_put ( iobuf, pad_len ), 0, pad_len );
74}
long pad_len
Definition bigint.h:31
#define assert(condition)
Assert a condition at run-time.
Definition assert.h:50
ring len
Length.
Definition dwmac.h:226
uint8_t data[48]
Additional event data.
Definition ena.h:11
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
String functions.
void * memset(void *dest, int character, size_t len) __nonnull
void * memmove(void *dest, const void *src, size_t len) __nonnull
void iob_pad(struct io_buffer *iobuf, size_t min_len)
Pad I/O buffer.
Definition iobpad.c:50
I/O buffers.
static size_t iob_headroom(struct io_buffer *iobuf)
Calculate available space at start of an I/O buffer.
Definition iobuf.h:170
#define iob_push(iobuf, len)
Definition iobuf.h:89
#define IOB_ZLEN
Minimum I/O buffer length and alignment.
Definition iobuf.h:29
#define iob_put(iobuf, len)
Definition iobuf.h:125
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition iobuf.h:160
#define iob_unput(iobuf, len)
Definition iobuf.h:140
A persistent I/O buffer.
Definition iobuf.h:38
void * data
Start of data.
Definition iobuf.h:53