1.\"- 2.\" Copyright (c) 2000 Poul Henning Kamp and Dag-Erling Co�dan Sm�rgrav 3.\" All rights reserved. 4.\" 5.\" Redistribution and use in source and binary forms, with or without 6.\" modification, are permitted provided that the following conditions 7.\" are met: 8.\" 1. Redistributions of source code must retain the above copyright 9.\" notice, this list of conditions and the following disclaimer. 10.\" 2. Redistributions in binary form must reproduce the above copyright 11.\" notice, this list of conditions and the following disclaimer in the 12.\" documentation and/or other materials provided with the distribution. 13.\" 14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24.\" SUCH DAMAGE. 25.\" 26.\" $FreeBSD$ 27.\" 28.Dd January 3, 2002 29.Dt SBUF 9 30.Os 31.Sh NAME 32.Nm sbuf_new , 33.Nm sbuf_clear , 34.Nm sbuf_setpos , 35.Nm sbuf_bcat , 36.Nm sbuf_bcopyin , 37.Nm sbuf_bcpy , 38.Nm sbuf_cat , 39.Nm sbuf_copyin , 40.Nm sbuf_cpy , 41.Nm sbuf_printf , 42.Nm sbuf_vprintf , 43.Nm sbuf_putc , 44.Nm sbuf_trim , 45.Nm sbuf_overflowed , 46.Nm sbuf_finish , 47.Nm sbuf_data , 48.Nm sbuf_len , 49.Nm sbuf_delete 50.Nd safe string formatting 51.Sh SYNOPSIS 52.In sys/types.h 53.In sys/sbuf.h 54.Ft struct sbuf * 55.Fn sbuf_new "struct sbuf *s" "char *buf" "int length" "int flags" 56.Ft void 57.Fn sbuf_clear "struct sbuf *s" 58.Ft int 59.Fn sbuf_setpos "struct sbuf *s" "int pos" 60.Ft int 61.Fn sbuf_bcat "struct sbuf *s" "const char *str" "size_t len" 62.Ft int 63.Fn sbuf_bcopyin "struct sbuf *s" "const void *uaddr" "size_t len" 64.Ft int 65.Fn sbuf_bcpy "struct sbuf *s" "const char *str" "size_t len" 66.Ft int 67.Fn sbuf_cat "struct sbuf *s" "const char *str" 68.Ft int 69.Fn sbuf_copyin "struct sbuf *s" "const void *uaddr" "size_t len" 70.Ft int 71.Fn sbuf_cpy "struct sbuf *s" "const char *str" 72.Ft int 73.Fn sbuf_printf "struct sbuf *s" "const char *fmt" "..." 74.Ft int 75.Fn sbuf_vprintf "struct sbuf *s" "const char *fmt" "va_list ap" 76.Ft int 77.Fn sbuf_putc "struct sbuf *s" "int c" 78.Ft int 79.Fn sbuf_trim "struct sbuf *s" 80.Ft int 81.Fn sbuf_overflowed "struct sbuf *s" 82.Ft void 83.Fn sbuf_finish "struct sbuf *s" 84.Ft char * 85.Fn sbuf_data "struct sbuf *s" 86.Ft int 87.Fn sbuf_len "struct sbuf *s" 88.Ft void 89.Fn sbuf_delete "struct sbuf *s" 90.Sh DESCRIPTION 91The 92.Nm sbuf 93family of functions allows one to safely allocate, construct and 94release bounded null-terminated strings in kernel space. 95Instead of arrays of characters, these functions operate on structures 96called 97.Fa sbufs , 98defined in 99.Aq Pa sys/sbuf.h . 100.Pp 101The 102.Fn sbuf_new 103function initializes the 104.Fa sbuf 105pointed to by its first argument. 106If that pointer is 107.Dv NULL , 108.Fn sbuf_new 109allocates a 110.Vt struct sbuf 111using 112.Xr malloc 9 . 113The 114.Fa buf 115argument is a pointer to a buffer in which to store the actual string; 116if it is 117.Dv NULL , 118.Fn sbuf_new 119will allocate one using 120.Xr malloc 9 . 121The 122.Fa length 123is the initial size of the storage buffer. 124The fourth argument, 125.Fa flags , 126may be comprised of the following flags: 127.Bl -tag -width ".Dv SBUF_AUTOEXTEND" 128.It Dv SBUF_FIXEDLEN 129The storage buffer is fixed at its initial size. 130Attempting to extend the sbuf beyond this size results in an overflow condition. 131.It Dv SBUF_AUTOEXTEND 132This indicates that the storage buffer may be extended as necessary, so long 133as resources allow, to hold additional data. 134.El 135.Pp 136Note that if 137.Fa buf 138is not 139.Dv NULL , 140it must point to an array of at least 141.Fa length 142characters. 143The contents of the provided buffer are undefined; to retrieve the sbuf data 144.Fn sbuf_data 145must be called on the finished 146.Fa sbuf . 147.Pp 148The 149.Fn sbuf_clear 150function invalidates the contents of the 151.Fa sbuf 152and resets its position to zero. 153.Pp 154The 155.Fn sbuf_setpos 156function sets the 157.Fa sbuf Ns 's 158end position to 159.Fa pos , 160which is a value between zero and one less than the size of the 161storage buffer. 162This effectively truncates the sbuf at the new position. 163.Pp 164The 165.Fn sbuf_bcat 166function appends the first 167.Fa len 168bytes from the byte string 169.Fa str 170to the 171.Fa sbuf . 172.Pp 173The 174.Fn sbuf_bcopyin 175function copies 176.Fa len 177bytes from the specified userland address into the 178.Fa sbuf . 179.Pp 180The 181.Fn sbuf_bcpy 182function replaces the contents of the 183.Fa sbuf 184with the first 185.Fa len 186bytes from the byte string 187.Fa str . 188.Pp 189The 190.Fn sbuf_cat 191function appends the NUL-terminated string 192.Fa str 193to the 194.Fa sbuf 195at the current position. 196.Pp 197The 198.Fn sbuf_copyin 199function copies a NUL-terminated string from the specified userland 200address into the 201.Fa sbuf . 202If the 203.Fa len 204argument is non-zero, no more than 205.Fa len 206characters (not counting the terminating NUL) are copied; otherwise 207the entire string, or as much of it as can fit in the 208.Fa sbuf , 209is copied. 210.Pp 211The 212.Fn sbuf_cpy 213function replaces the contents of the 214.Fa sbuf 215with those of the NUL-terminated string 216.Fa str . 217This is equivalent to calling 218.Fn sbuf_cat 219with a fresh 220.Fa sbuf 221or one which position has been reset to zero with 222.Fn sbuf_clear 223or 224.Fn sbuf_setpos . 225.Pp 226The 227.Fn sbuf_printf 228function formats its arguments according to the format string pointed 229to by 230.Fa fmt 231and appends the resulting string to the 232.Fa sbuf 233at the current position. 234.Pp 235The 236.Fn sbuf_vprintf 237function behaves the same as 238.Fn sbuf_printf 239except that the arguments are obtained from the variable-length argument list 240.Fa ap . 241.Pp 242The 243.Fn sbuf_putc 244function appends the character 245.Fa c 246to the 247.Fa sbuf 248at the current position. 249.Pp 250The 251.Fn sbuf_trim 252function removes trailing whitespace from the 253.Fa sbuf . 254.Pp 255The 256.Fn sbuf_overflowed 257function returns a non-zero value if the 258.Fa sbuf 259overflowed. 260.Pp 261The 262.Fn sbuf_finish 263function null-terminates the 264.Fa sbuf 265and marks it as finished, which means that it may no longer be 266modified using 267.Fn sbuf_setpos , 268.Fn sbuf_cat , 269.Fn sbuf_cpy , 270.Fn sbuf_printf 271or 272.Fn sbuf_putc . 273.Pp 274The 275.Fn sbuf_data 276and 277.Fn sbuf_len 278functions return the actual string and its length, respectively; 279.Fn sbuf_data 280only works on a finished 281.Fa sbuf . 282.Pp 283Finally, the 284.Fn sbuf_delete 285function clears the 286.Fa sbuf 287and frees its storage buffer if it was allocated by 288.Fn sbuf_new . 289.Sh NOTES 290If an operation caused an 291.Fa sbuf 292to overflow, most subsequent operations on it will fail until the 293.Fa sbuf 294is finished using 295.Fn sbuf_finish 296or reset using 297.Fn sbuf_clear , 298or its position is reset to a value between 0 and one less than the 299size of its storage buffer using 300.Fn sbuf_setpos , 301or it is reinitialized to a sufficiently short string using 302.Fn sbuf_cpy . 303.Sh RETURN VALUES 304.Fn sbuf_new 305returns 306.Dv NULL 307if it failed to allocate a storage buffer, and a pointer to the new 308.Fa sbuf 309otherwise. 310.Pp 311.Fn sbuf_setpos 312returns \-1 if 313.Fa pos 314was invalid, and zero otherwise. 315.Pp 316.Fn sbuf_cat , 317.Fn sbuf_cpy , 318.Fn sbuf_printf , 319.Fn sbuf_putc , 320and 321.Fn sbuf_trim 322all return \-1 if the buffer overflowed, and zero otherwise. 323.Pp 324.Fn sbuf_overflowed 325returns a non-zero value if the buffer overflowed, and zero otherwise. 326.Pp 327.Fn sbuf_data 328and 329.Fn sbuf_len 330return 331.Dv NULL 332and \-1, respectively, if the buffer overflowed. 333.Sh SEE ALSO 334.Xr printf 3 , 335.Xr strcat 3 , 336.Xr strcpy 3 , 337.Xr copyin 9 , 338.Xr copyinstr 9 , 339.Xr printf 9 340.Sh HISTORY 341The 342.Nm sbuf 343family of functions first appeared in 344.Fx 4.4 . 345.Sh AUTHORS 346.An -nosplit 347The 348.Nm sbuf 349family of functions was designed by 350.An Poul-Henning Kamp Aq phk@FreeBSD.org 351and implemented by 352.An Dag-Erling Co\(:idan Sm\(/orgrav Aq des@FreeBSD.org . 353Additional improvements were suggested by 354.An Justin T. Gibbs Aq gibbs@FreeBSD.org . 355Auto-extend support added by 356.An Kelly Yancey Aq kbyanc@FreeBSD.org . 357.Pp 358This manual page was written by 359.An Dag-Erling Co\(:idan Sm\(/orgrav . 360