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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
.\" Man page written by Jozsef Kadlecsik <kadlec@netfilter.org>
.\"
.\" 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., 675 Mass Ave, Cambridge, MA 02139, USA.
.TH libipset 3 "Oct 16, 2018" "Jozsef Kadlecsik" ""
.SH NAME
libipset \- A library for using ipset
.SH SYNOPSIS
.nf
#include <libipset/ipset.h>
.sp
void ipset_load_types(void)
.sp
struct ipset * ipset_init(void)
int ipset_parse_argv(struct ipset *ipset, int argc, char *argv[])
.sp
int ipset_parse_line(struct ipset *ipset, char *line)
.sp
int ipset_parse_stream(struct ipset *ipset, FILE *f)
.sp
int ipset_fini(struct ipset *ipset)
.sp
int ipset_custom_printf(struct ipset *ipset,
ipset_custom_errorfn custom_error,
ipset_standard_errorfn standard_error,
ipset_print_outfn outfn,
void *p)
.sp
struct ipset_session * ipset_session(struct ipset *ipset)
.sp
int ipset_session_full_io(struct ipset_session *session,
const char *filename,
enum ipset_io_type what)
.sp
int ipset_session_normal_io(struct ipset_session *session,
const char *filename,
enum ipset_io_type what)
.sp
FILE * ipset_session_io_stream(struct ipset_session *session,
enum ipset_io_type what)
.sp
int ipset_session_io_close(struct ipset_session *session,
enum ipset_io_type what)
.SH DESCRIPTION
libipset provides a library interface to
.BR ipset(8).
The integer return valued functions return 0 on success and a negative
value on failure.
.TP
ipset_load_types
Loads in the supported ipset types in the library and make them
available for the ipset interface.
.TP
ipset_init
Initializes the ipset interface: allocates and initializes the required
internal structures, opens up the netlink channel. The function returns
the library interface structure of type
.B
struct ipset *
or
.B NULL
on failure.
.TP
ipset_parse_argv
Parses the
.B argc
length of array of strings
.B argv
with the already initialized
.B
ipset
library structure.
If the command is successfully parsed, it is then submitted to the kernel
to execute. In the case of error, the textual error message is printed
and a negative number is returned.
.TP
ipset_parse_line
Parses the string
.B line
with the already initialized
.B
ipset
library structure. The line is supposed to contain
a single ipset command in restore format. If the command is successfully
parsed, it is then submitted to the kernel to execute. In the case of
error, the textual error message is printed and a negative number is
returned.
.TP
ipset_parse_stream
Parses the stream
.B f
with the already initialized
.B
ipset
library structure. The stream may contain multiple newline
separated ipset commands in restore format. The commands are parsed
and then submitted to the kernel in batches for efficiecy. In the case of
error, the textual error message is printed and a negative number is
returned.
.TP
ipset_fini
Closes the netlink channel, closes opened streams and releases allocated
structures holding by the
.B ipset
library structure.
.PP
The following functions makes possible to customize the interface.
.TP
ipset_custom_printf
Sets or resets the print functions for the
.B
ipset
library structure, where
.B
custom_error
is the custom error print function for the internal library errors,
.B
standard_error
is the print function for the netlink/kernel related errors and
.B
outfn
is the output function to print the result of list/save commands.
The
.B
p
pointer makes possible to pass arbitrary structure to the custom
print functions. If
.B
NULL
is passed instead of a function pointer, the default print function
is set for the given task. If any of the print functions is non-default,
then the
.I
version,
.I
help,
.I
interactive
ipset commands are ignored.
.TP
ipset_session
The function returns the session structure
of the
.B
ipset
library structure, in order to manipulate the IO parameters.
.TP
ipset_session_full_io
You can control the full IO, i.e. input (restore) and output (save)
separatedly by the function. The
.B
session
parameter is the session structure of the library interface,
.B
filename
is the filename you want to use for input or output
and
.B
what
tells the function you want to set input or output file.
If there's an already opened file for the given IO mode, it is closed.
The function returns an error if normal mode is in use. If
.B
NULL
is passed instead of a filename, already opened file is closed
and the normal stream is set for the given IO mode (stdin for input,
stdout for output). Input/output files can be set separatedly.
.TP
ipset_session_normal_io
You can control the normal IO, which corresponds to the interface
provided by
.B
ipset(8)
itself.
.B
session
parameter is the session structure of the library interface,
.B
filename
is the filename you want to use for input or output
and
.B
what
tells the function you want to set input or output file.
If there's an already opened file for input/output, it is closed.
The function returns an error if full mode is in use. If
.B
NULL
is passed instead of a filename, already opened file is closed
and the normal stream is set for the given IO mode (stdin for input,
stdout for output). Input/output files cannot be set separatedly.
.TP
ipset_session_io_stream
The function returns the stream set for the
.B
session
where
.B
what
tells the function you want to get the input or the output stream.
.TP
ipset_session_io_close
The function closes the stream for the
.B
session
where
.B
what
tells the function you want to close the input or the output
stream. After closing, the standard streams are set: stdin for input,
stdout for output.
.SH AUTHORS
ipset/libipset was designed and written by Jozsef Kadlecsik.
.SH SEE ALSO
.BR ipset(8),
.br
/usr/include/libipset/ipset.h
/usr/include/libipset/session.h
|