summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_sbuf.c
Commit message (Collapse)AuthorAgeFilesLines
* Add a drain function for struct sysctl_req, and use it for a variety ofmdf2010-09-091-2/+2
| | | | | | | | | | handlers, some of which had to do awkward things to get a large enough FIXEDLEN buffer. Note that some sysctl handlers were explicitly outputting a trailing NUL byte. This behaviour was preserved, though it should not be necessary. Reviewed by: phk
* Add drain functionality to sbufs. The drain is a function that ismdf2010-09-091-6/+99
| | | | | | | | | | | | | | | | | called when the sbuf internal buffer is filled. For kernel sbufs with a drain, the internal buffer will never be expanded. For userland sbufs with a drain, the internal buffer may still be expanded by sbuf_[v]printf(3). Sbufs now have three basic uses: 1) static string manipulation. Overflow is marked. 2) dynamic string manipulation. Overflow triggers string growth. 3) drained string manipulation. Overflow triggers draining. In all cases the manipulation is 'safe' in that overflow is detected and managed. Reviewed by: phk (the previous version)
* Refactor sbuf code so that most uses of sbuf_extend() are in a newmdf2010-09-091-25/+69
| | | | | | | sbuf_put_byte(). This makes it easier to add drain functionality when a buffer would overflow as there are fewer code points. Reviewed by: phk
* Use a better #if guard.mdf2010-09-031-1/+1
| | | | Suggested by pluknet <pluknet at gmail dot com>.
* Style(9) fixes and eliminate the use of min().mdf2010-09-031-12/+15
|
* Fix user-space libsbuf build. Why isn't CTASSERT available tomdf2010-09-031-0/+2
| | | | user-space?
* Fix brain fart when converting an if statement into a KASSERT.mdf2010-09-031-1/+1
|
* Use math rather than iteration when the desired sbuf size is larger thanmdf2010-09-031-5/+9
| | | | SBUF_MAXEXTENDSIZE.
* Switch to simplified BSD license (with phk's approval), plus whitespacedes2008-08-091-29/+45
| | | | and style(9) cleanup.
* Make sbuf_copyin() return the number of bytes copied on success.phk2005-12-231-1/+1
| | | | Submitted by: "Wojciech A. Koszek" <dunstan@freebsd.czest.pl>
* Make a bunch of malloc types static.phk2005-02-101-1/+1
| | | | Found by: src/tools/tools/kernxref
* Cosmetic adjustment to previous commit: name the second argument todes2004-07-091-4/+4
| | | | sbuf_bcat() and sbuf_bcpy() "buf" rather than "data".
* Have sbuf_bcat() and sbuf_bcpy() take a const void * instead of ades2004-07-091-3/+5
| | | | | const char *, since callers are likely to pass in pointers to all kinds of structs and whatnot.
* Mechanical whistespace cleanup.des2004-02-171-19/+19
|
* Use __FBSDID().obrien2003-06-111-2/+3
|
* Copy the va_list in sbuf_vprintf() before passing it to vsnprintf(),peter2003-05-251-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | because we could fail due to a small buffer and loop and rerun. If this happens, then the vsnprintf() will have already taken the arguments off the va_list. For i386 and others, this doesn't matter because the va_list type is a passed as a copy. But on powerpc and amd64, this is fatal because the va_list is a reference to an external structure that keeps the vararg state due to the more complicated argument passing system. On amd64, arguments can be passed as follows: First 6 int/pointer type arguments go in registers, the rest go on the memory stack. Float and double are similar, except using SSE registers. long double (80 bit precision) are similar except using the x87 stack. Where the 'next argument' comes from depends on how many have been processed so far and what type it is. For amd64, gcc keeps this state somewhere that is referenced by the va_list. I found a description that showed the va_copy was required here: http://mirrors.ccs.neu.edu/cgi-bin/unixhelp/man-cgi?va_end+9 The single unix spec doesn't mention va_copy() at all. Anyway, the problem was that the sysctl kern.geom.conf* nodes would panic due to walking off the end of the va_arg lists in vsnprintf. A better fix would be to have sbuf_vprintf() use a single pass and call kvprintf() with a callback function that stored the results and grew the buffer as needed. Approved by: re (scottl)
* Back out M_* changes, per decision of the TRB.imp2003-02-191-1/+1
| | | | Approved by: trb
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.alfred2003-01-211-1/+1
| | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
* Add the new function "sbuf_done()" which returns non-zero if the sbuf isphk2002-10-041-0/+10
| | | | | | | | | finished. This allows sbufs to be used for request/response scenarioes without needing additional communication flags. Sponsored by: DARPA & NAI Labs.
* Add a cast to make this file compile in userland on sparc64 withoutphk2002-09-161-1/+1
| | | | warnings.
* Fix warnings on gcc-3.1+ where __func__ is a const char * instead of apeter2002-03-191-2/+2
| | | | string.
* Yet a bug with extensible sbufs being marked as OVERFLOWED. This timephk2002-01-241-1/+1
| | | | | | because of a signed/unsigned problem. Approved by: DES
* In certain cases sbuf_printf() and sbuf_vprintf() could mistakelyphk2002-01-221-1/+1
| | | | | | make extendable sbufs as overflowed. Approved by: des
* Replace spaces after #defines with tabs; this makes all #defineskbyanc2002-01-091-20/+20
| | | | consistent in their adherence with style(9).
* * Implement SBUF_AUTOEXTEND flag; sbufs created with this flag arekbyanc2002-01-061-23/+108
| | | | | | | | | | automatically extended to prevent overflow. * Added sbuf_vprintf(); sbuf_printf() is now just a wrapper around sbuf_vprintf(). * Include <stdio.h> and <string.h> when building libsbuf to silence WARNS=4 warnings. Reviewed by: des
* Calculate whether the sbuf is dynamic *before* bzero()ing thedillon2001-12-191-1/+4
| | | | | | structure. This fixes a serious memory leak in the sbuf code. MFC after: 3 days
* Update to C99, s/__FUNCTION__/__func__/.obrien2001-12-101-6/+6
|
* Add a couple of API functions I need for my pseudofs WIP. Documentationdes2001-09-291-1/+51
| | | | | will follow when I've decided whether to keep this API or ditch it in favor of something slightly more subtle.
* Constify the format string.des2001-07-031-1/+1
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Fix warnings:jlemon2001-06-161-0/+1
| | | | | 112: warning: cast to pointer from integer of different size 125: warning: cast to pointer from integer of different size
* Blah, I cut out a tad too much in the previous commit. (thanks again, Jake!)des2001-06-111-0/+1
|
* copyin(9) doesn't return ENAMETOOLONG. (thanks, Jake!)des2001-06-111-10/+2
|
* Add sbuf_copyin(). Also add 'b' variants of sbuf_{cat,copyin,cpy}() whichdes2001-06-111-0/+98
| | | | ignore NUL bytes in the source string.
* sbuf_new(9) now returns a struct sbuf * instead of an int. If the callerdes2001-06-101-8/+20
| | | | | does not provide a struct sbuf, sbuf_new(9) will allocate one and return a pointer to it.
* Rewrite of the CAM error recovery code.ken2001-03-271-19/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the major changes include: - The SCSI error handling portion of cam_periph_error() has been broken out into a number of subfunctions to better modularize the code that handles the hierarchy of SCSI errors. As a result, the code is now much easier to read. - String handling and error printing has been significantly revamped. We now use sbufs to do string formatting instead of using printfs (for the kernel) and snprintf/strncat (for userland) as before. There is a new catchall error printing routine, cam_error_print() and its string-based counterpart, cam_error_string() that allow the kernel and userland applications to pass in a CCB and have errors printed out properly, whether or not they're SCSI errors. Among other things, this helped eliminate a fair amount of duplicate code in camcontrol. We now print out more information than before, including the CAM status and SCSI status and the error recovery action taken to remedy the problem. - sbufs are now available in userland, via libsbuf. This change was necessary since most of the error printing code is shared between libcam and the kernel. - A new transfer settings interface is included in this checkin. This code is #ifdef'ed out, and is primarily intended to aid discussion with HBA driver authors on the final form the interface should take. There is example code in the ahc(4) driver that implements the HBA driver side of the new interface. The new transfer settings code won't be enabled until we're ready to switch all HBA drivers over to the new interface. src/Makefile.inc1, lib/Makefile: Add libsbuf. It must be built before libcam, since libcam uses sbuf routines. libcam/Makefile: libcam now depends on libsbuf. libsbuf/Makefile: Add a makefile for libsbuf. This pulls in the sbuf sources from sys/kern. bsd.libnames.mk: Add LIBSBUF. camcontrol/Makefile: Add -lsbuf. Since camcontrol is statically linked, we can't depend on the dynamic linker to pull in libsbuf. camcontrol.c: Use cam_error_print() instead of checking for CAM_SCSI_STATUS_ERROR on every failed CCB. sbuf.9: Change the prototypes for sbuf_cat() and sbuf_cpy() so that the source string is now a const char *. This is more in line wth the standard system string functions, and helps eliminate warnings when dealing with a const source buffer. Fix a typo. cam.c: Add description strings for the various CAM error status values, as well as routines to look up those strings. Add new cam_error_string() and cam_error_print() routines for userland and the kernel. cam.h: Add a new CAM flag, CAM_RETRY_SELTO. Add enumerated types for the various options available with cam_error_print() and cam_error_string(). cam_ccb.h: Add new transfer negotiation structures/types. Change inq_len in the ccb_getdev structure to be "reserved". This field has never been filled in, and will be removed when we next bump the CAM version. cam_debug.h: Fix typo. cam_periph.c: Modularize cam_periph_error(). The SCSI error handling part of cam_periph_error() is now in camperiphscsistatuserror() and camperiphscsisenseerror(). In cam_periph_lock(), increase the reference count on the periph while we wait for our lock attempt to succeed so that the periph won't go away while we're sleeping. cam_xpt.c: Add new transfer negotiation code. (ifdefed out) Add a new function, xpt_path_string(). This is a string/sbuf analog to xpt_print_path(). scsi_all.c: Revamp string handing and error printing code. We now use sbufs for much of the string formatting code. More of that code is shared between userland the kernel. scsi_all.h: Get rid of SS_TURSTART, it wasn't terribly useful in the first place. Add a new error action, SS_REQSENSE. (Send a request sense and then retry the command.) This is useful when the controller hasn't performed autosense for some reason. Change the default actions around a bit. scsi_cd.c, scsi_da.c, scsi_pt.c, scsi_ses.c: SF_RETRY_SELTO -> CAM_RETRY_SELTO. Selection timeouts shouldn't be covered by a sense flag. scsi_pass.[ch]: SF_RETRY_SELTO -> CAM_RETRY_SELTO. Get rid of the last vestiges of a read/write interface. libkern/bsearch.c, sys/libkern.h, conf/files: Add bsearch.c, which is needed for some of the new table lookup routines. aic7xxx_freebsd.c: Define AHC_NEW_TRAN_SETTINGS if CAM_NEW_TRAN_CODE is defined. sbuf.h, subr_sbuf.c: Add the appropriate #ifdefs so sbufs can compile and run in userland. Change sbuf_printf() to use vsnprintf() instead of kvprintf(), which is only available in the kernel. Change the source string for sbuf_cpy() and sbuf_cat() to be a const char *. Add __BEGIN_DECLS and __END_DECLS around function prototypes since they're now exported to userland. kdump/mkioctls: Include stdio.h before cam.h since cam.h now includes a function with a FILE * argument. Submitted by: gibbs (mostly) Reviewed by: jdp, marcel (libsbuf makefile changes) Reviewed by: des (sbuf changes) Reviewed by: ken
* Make the KASSERTs report the correct function names.des2001-03-061-18/+11
| | | | | Fix two off-by-one errors that would sometimes cause the final length of the sbuf to include the trailing zero.
* Remove an assertion I forgot to remove in the previous commit: sbuf_len()des2001-01-281-1/+2
| | | | | | may now be called with an unfinished sbuf. For consistency, copy the related comment from sbuf_delete() to sbuf_clear() and sbuf_len().
* Add sbuf_clear() and sbuf_overflowed().des2001-01-281-13/+49
| | | | | | | | | | Move the helper macros from sbuf.h to sbuf.c Use ints instead of size_ts. Relax the requirements for sbuf_finish(): it is now possible to finish an overflowed buffer. Make sbuf_len() return -1 instead of 0 if the sbuf overflowed. Requested by: gibbs
* String buffer APIdes2000-12-131-0/+271
OpenPOWER on IntegriCloud