mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 07:23:03 +02:00
qosctrl Fix. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@806 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
75 lines
2.6 KiB
C
75 lines
2.6 KiB
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 256
|
|
#endif
|
|
#define LETTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
#define NUMBERS "0123456789"
|
|
#define LETTERS_NUMBERS LETTERS NUMBERS
|
|
#define IP_NUMBERS "./" NUMBERS
|
|
#define PORT_NUMBERS ":-" NUMBERS
|
|
#define VALID_FQDN LETTERS_NUMBERS ".-"
|
|
|
|
|
|
#define VALID_IP(ip) (strlen(ip) > 6 \
|
|
&& strlen(ip) < 16 \
|
|
&& strspn(ip, NUMBERS ".") == strlen(ip))
|
|
|
|
#define VALID_IP_AND_MASK(ip) (strlen(ip) > 6 \
|
|
&& strlen(ip) < 32 \
|
|
&& strspn(ip, IP_NUMBERS) == strlen(ip))
|
|
|
|
#define VALID_PORT(port) (strlen(port) \
|
|
&& strlen(port) < 6 \
|
|
&& strspn(port, NUMBERS) == strlen(port))
|
|
|
|
#define VALID_PORT_RANGE(port) (strlen(port) \
|
|
&& strlen(port) < 12 \
|
|
&& strspn(port, PORT_NUMBERS) == strlen(port))
|
|
|
|
#define VALID_SHORT_MASK(ip) (strlen(ip) > 1 \
|
|
&& strlen(ip) < 3 \
|
|
&& strspn(ip, NUMBERS) == strlen(ip))
|
|
|
|
/* Can't find any info on valid characters/length hopefully these are
|
|
* reasonable guesses */
|
|
#define VALID_DEVICE(dev) (strlen(dev) \
|
|
&& strlen(dev) < 16 \
|
|
&& strspn(dev, LETTERS_NUMBERS ":.") == strlen(dev))
|
|
|
|
/* Again, can't find any hard and fast rules for protocol names, these
|
|
* restrictions are based on the keywords currently listed in
|
|
* <http://www.iana.org/assignments/protocol-numbers>
|
|
* though currently the ipcop cgis will only pass tcp, udp or gre anyway */
|
|
#define VALID_PROTOCOL(prot) (strlen(prot) \
|
|
&& strlen(prot) <16 \
|
|
&& strspn(prot, LETTERS_NUMBERS "-") == strlen(prot))
|
|
|
|
extern char * trusted_env[4];
|
|
|
|
int system_core(char* command, uid_t uid, gid_t gid, char *error);
|
|
int safe_system(char* command);
|
|
int unpriv_system(char* command, uid_t uid, gid_t gid);
|
|
size_t strlcat(char *dst, const char *src, size_t len);
|
|
int initsetuid(void);
|
|
|
|
/* check whether a file exists */
|
|
int file_exists(const char *fname);
|
|
int file_exists_w(const char *fname); //wildcard filename test
|
|
|
|
#endif
|