/*1* Copyright 2016 Chris Torek <[email protected]>2* All rights reserved3*4* Redistribution and use in source and binary forms, with or without5* modification, are permitted providing that the following conditions6* are met:7* 1. Redistributions of source code must retain the above copyright8* notice, this list of conditions and the following disclaimer.9* 2. Redistributions in binary form must reproduce the above copyright10* notice, this list of conditions and the following disclaimer in the11* documentation and/or other materials provided with the distribution.12*13* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR14* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED15* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE16* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY17* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL18* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS19* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)20* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,21* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING22* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE23* POSSIBILITY OF SUCH DAMAGE.24*25*/2627#ifndef LIB9P_RFUNCS_H28#define LIB9P_RFUNCS_H2930#include <grp.h>31#include <pwd.h>32#include <string.h>3334#if defined(WITH_CASPER)35#include <libcasper.h>36#endif3738/*39* Reentrant, optionally-malloc-ing versions of40* basename() and dirname().41*/42char *r_basename(const char *, char *, size_t);43char *r_dirname(const char *, char *, size_t);4445/*46* Yuck: getpwuid, getgrgid are not thread-safe, and the47* POSIX replacements (getpwuid_r, getgrgid_r) are horrible.48* This is to allow us to loop over the get.*_r calls with ever49* increasing buffers until they succeed or get unreasonable50* (same idea as the libc code for the non-reentrant versions,51* although prettier).52*53* The getpwuid/getgrgid functions auto-init one of these,54* but the caller must call r_pgfree() when done with the55* return values.56*57* If we need more later, we may have to expose the init function.58*/59struct r_pgdata {60char *r_pgbuf;61size_t r_pgbufsize;62union {63struct passwd un_pw;64struct group un_gr;65} r_pgun;66};6768/* void r_pginit(struct r_pgdata *); */69void r_pgfree(struct r_pgdata *);70struct passwd *r_getpwuid(uid_t, struct r_pgdata *);71struct group *r_getgrgid(gid_t, struct r_pgdata *);7273#if defined(WITH_CASPER)74struct passwd *r_cap_getpwuid(cap_channel_t *, uid_t, struct r_pgdata *);75struct group *r_cap_getgrgid(cap_channel_t *, gid_t, struct r_pgdata *);76#endif7778#endif /* LIB9P_RFUNCS_H */798081