Files
bpfire/src/misc-progs/setuid.h
2021-01-27 21:06:57 +00:00

44 lines
1005 B
C

/* SmoothWall helper program - header file
*
* This program is distributed under the terms of the GNU General Public
* Licence. See the file COPYING for details.
* Simple header file for all setuid progs.
*
*/
#ifndef SETUID_H
#define SETUID_H 1
#include <stdlib.h>
#include <sys/types.h>
/* As nothing in setuid.c uses STRING_SIZE specifically there's no real reason
* to redefine it if it already is set */
#ifndef STRING_SIZE
#define STRING_SIZE 1024
#endif
#ifndef CONFIG_ROOT
#define CONFIG_ROOT "/var/ipfire"
#endif
#ifndef SNAME
#define SNAME "SNAME to be filled"
#endif
extern char * trusted_env[4];
int run(char* command, char** argv);
int safe_system(char* command);
int unpriv_system(char* command, uid_t uid, gid_t gid);
int initsetuid(void);
int is_valid_argument_alnum(const char* arg);
int is_valid_argument_num(const char* arg);
/* Compatibility for the local copy of strlcat,
* which has been removed. */
#define strlcat(src, dst, size) strncat(src, dst, size)
#endif