mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.*.c: Add static qualifiers everywhere
This commit is contained in:
parent
8613dc1739
commit
a149dda0e3
6 changed files with 47 additions and 52 deletions
|
@ -35,8 +35,8 @@ typedef unsigned __int32 uint32_t;
|
||||||
#define HMAC_IPAD 0x36363636
|
#define HMAC_IPAD 0x36363636
|
||||||
#define HMAC_OPAD 0x5c5c5c5c
|
#define HMAC_OPAD 0x5c5c5c5c
|
||||||
|
|
||||||
const char *hex_tab = "0123456789abcdef";
|
static const char *hex_tab = "0123456789abcdef";
|
||||||
void toHex(const unsigned char *in, int length, unsigned char *out) {
|
static void toHex(const unsigned char *in, int length, unsigned char *out) {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for(i = 0; i < length; i++) {
|
for(i = 0; i < length; i++) {
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
/* Enumerate all locally configured IP addresses */
|
/* Enumerate all locally configured IP addresses */
|
||||||
|
|
||||||
const char *const type_strings[] = {
|
static const char *const type_strings[] = {
|
||||||
"both",
|
"both",
|
||||||
"ipv4",
|
"ipv4",
|
||||||
"ipv6",
|
"ipv6",
|
||||||
|
|
|
@ -137,7 +137,7 @@ static int lc_daemonize(lua_State *L) {
|
||||||
|
|
||||||
/* Syslog support */
|
/* Syslog support */
|
||||||
|
|
||||||
const char *const facility_strings[] = {
|
static const char *const facility_strings[] = {
|
||||||
"auth",
|
"auth",
|
||||||
#if !(defined(sun) || defined(__sun))
|
#if !(defined(sun) || defined(__sun))
|
||||||
"authpriv",
|
"authpriv",
|
||||||
|
@ -163,7 +163,7 @@ const char *const facility_strings[] = {
|
||||||
"uucp",
|
"uucp",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
int facility_constants[] = {
|
static int facility_constants[] = {
|
||||||
LOG_AUTH,
|
LOG_AUTH,
|
||||||
#if !(defined(sun) || defined(__sun))
|
#if !(defined(sun) || defined(__sun))
|
||||||
LOG_AUTHPRIV,
|
LOG_AUTHPRIV,
|
||||||
|
@ -199,9 +199,9 @@ int facility_constants[] = {
|
||||||
constant.
|
constant.
|
||||||
" -- syslog manpage
|
" -- syslog manpage
|
||||||
*/
|
*/
|
||||||
char *syslog_ident = NULL;
|
static char *syslog_ident = NULL;
|
||||||
|
|
||||||
int lc_syslog_open(lua_State *L) {
|
static int lc_syslog_open(lua_State *L) {
|
||||||
int facility = luaL_checkoption(L, 2, "daemon", facility_strings);
|
int facility = luaL_checkoption(L, 2, "daemon", facility_strings);
|
||||||
facility = facility_constants[facility];
|
facility = facility_constants[facility];
|
||||||
|
|
||||||
|
@ -217,7 +217,7 @@ int lc_syslog_open(lua_State *L) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *const level_strings[] = {
|
static const char *const level_strings[] = {
|
||||||
"debug",
|
"debug",
|
||||||
"info",
|
"info",
|
||||||
"notice",
|
"notice",
|
||||||
|
@ -225,7 +225,7 @@ const char *const level_strings[] = {
|
||||||
"error",
|
"error",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
int level_constants[] = {
|
static int level_constants[] = {
|
||||||
LOG_DEBUG,
|
LOG_DEBUG,
|
||||||
LOG_INFO,
|
LOG_INFO,
|
||||||
LOG_NOTICE,
|
LOG_NOTICE,
|
||||||
|
@ -233,7 +233,7 @@ int level_constants[] = {
|
||||||
LOG_CRIT,
|
LOG_CRIT,
|
||||||
-1
|
-1
|
||||||
};
|
};
|
||||||
int lc_syslog_log(lua_State *L) {
|
static int lc_syslog_log(lua_State *L) {
|
||||||
int level = level_constants[luaL_checkoption(L, 1, "notice", level_strings)];
|
int level = level_constants[luaL_checkoption(L, 1, "notice", level_strings)];
|
||||||
|
|
||||||
if(lua_gettop(L) == 3) {
|
if(lua_gettop(L) == 3) {
|
||||||
|
@ -245,7 +245,7 @@ int lc_syslog_log(lua_State *L) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_syslog_close(lua_State *L) {
|
static int lc_syslog_close(lua_State *L) {
|
||||||
(void)L;
|
(void)L;
|
||||||
closelog();
|
closelog();
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ int lc_syslog_close(lua_State *L) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_syslog_setmask(lua_State *L) {
|
static int lc_syslog_setmask(lua_State *L) {
|
||||||
int level_idx = luaL_checkoption(L, 1, "notice", level_strings);
|
int level_idx = luaL_checkoption(L, 1, "notice", level_strings);
|
||||||
int mask = 0;
|
int mask = 0;
|
||||||
|
|
||||||
|
@ -271,24 +271,24 @@ int lc_syslog_setmask(lua_State *L) {
|
||||||
|
|
||||||
/* getpid */
|
/* getpid */
|
||||||
|
|
||||||
int lc_getpid(lua_State *L) {
|
static int lc_getpid(lua_State *L) {
|
||||||
lua_pushinteger(L, getpid());
|
lua_pushinteger(L, getpid());
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* UID/GID functions */
|
/* UID/GID functions */
|
||||||
|
|
||||||
int lc_getuid(lua_State *L) {
|
static int lc_getuid(lua_State *L) {
|
||||||
lua_pushinteger(L, getuid());
|
lua_pushinteger(L, getuid());
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_getgid(lua_State *L) {
|
static int lc_getgid(lua_State *L) {
|
||||||
lua_pushinteger(L, getgid());
|
lua_pushinteger(L, getgid());
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_setuid(lua_State *L) {
|
static int lc_setuid(lua_State *L) {
|
||||||
int uid = -1;
|
int uid = -1;
|
||||||
|
|
||||||
if(lua_gettop(L) < 1) {
|
if(lua_gettop(L) < 1) {
|
||||||
|
@ -346,7 +346,7 @@ int lc_setuid(lua_State *L) {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_setgid(lua_State *L) {
|
static int lc_setgid(lua_State *L) {
|
||||||
int gid = -1;
|
int gid = -1;
|
||||||
|
|
||||||
if(lua_gettop(L) < 1) {
|
if(lua_gettop(L) < 1) {
|
||||||
|
@ -404,7 +404,7 @@ int lc_setgid(lua_State *L) {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_initgroups(lua_State *L) {
|
static int lc_initgroups(lua_State *L) {
|
||||||
int ret;
|
int ret;
|
||||||
gid_t gid;
|
gid_t gid;
|
||||||
struct passwd *p;
|
struct passwd *p;
|
||||||
|
@ -468,7 +468,7 @@ int lc_initgroups(lua_State *L) {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_umask(lua_State *L) {
|
static int lc_umask(lua_State *L) {
|
||||||
char old_mode_string[7];
|
char old_mode_string[7];
|
||||||
mode_t old_mode = umask(strtoul(luaL_checkstring(L, 1), NULL, 8));
|
mode_t old_mode = umask(strtoul(luaL_checkstring(L, 1), NULL, 8));
|
||||||
|
|
||||||
|
@ -479,7 +479,7 @@ int lc_umask(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_mkdir(lua_State *L) {
|
static int lc_mkdir(lua_State *L) {
|
||||||
int ret = mkdir(luaL_checkstring(L, 1), S_IRUSR | S_IWUSR | S_IXUSR
|
int ret = mkdir(luaL_checkstring(L, 1), S_IRUSR | S_IWUSR | S_IXUSR
|
||||||
| S_IRGRP | S_IWGRP | S_IXGRP
|
| S_IRGRP | S_IWGRP | S_IXGRP
|
||||||
| S_IROTH | S_IXOTH); /* mode 775 */
|
| S_IROTH | S_IXOTH); /* mode 775 */
|
||||||
|
@ -504,7 +504,7 @@ int lc_mkdir(lua_State *L) {
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* pposix.setrlimit("NOFILE", 1000, 2000)
|
* pposix.setrlimit("NOFILE", 1000, 2000)
|
||||||
*/
|
*/
|
||||||
int string2resource(const char *s) {
|
static int string2resource(const char *s) {
|
||||||
if(!strcmp(s, "CORE")) {
|
if(!strcmp(s, "CORE")) {
|
||||||
return RLIMIT_CORE;
|
return RLIMIT_CORE;
|
||||||
}
|
}
|
||||||
|
@ -554,7 +554,7 @@ int string2resource(const char *s) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rlim_t arg_to_rlimit(lua_State *L, int idx, rlim_t current) {
|
static rlim_t arg_to_rlimit(lua_State *L, int idx, rlim_t current) {
|
||||||
switch(lua_type(L, idx)) {
|
switch(lua_type(L, idx)) {
|
||||||
case LUA_TSTRING:
|
case LUA_TSTRING:
|
||||||
|
|
||||||
|
@ -575,7 +575,7 @@ rlim_t arg_to_rlimit(lua_State *L, int idx, rlim_t current) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_setrlimit(lua_State *L) {
|
static int lc_setrlimit(lua_State *L) {
|
||||||
struct rlimit lim;
|
struct rlimit lim;
|
||||||
int arguments = lua_gettop(L);
|
int arguments = lua_gettop(L);
|
||||||
int rid = -1;
|
int rid = -1;
|
||||||
|
@ -614,7 +614,7 @@ int lc_setrlimit(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_getrlimit(lua_State *L) {
|
static int lc_getrlimit(lua_State *L) {
|
||||||
int arguments = lua_gettop(L);
|
int arguments = lua_gettop(L);
|
||||||
const char *resource = NULL;
|
const char *resource = NULL;
|
||||||
int rid = -1;
|
int rid = -1;
|
||||||
|
@ -659,13 +659,13 @@ int lc_getrlimit(lua_State *L) {
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_abort(lua_State *L) {
|
static int lc_abort(lua_State *L) {
|
||||||
(void)L;
|
(void)L;
|
||||||
abort();
|
abort();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_uname(lua_State *L) {
|
static int lc_uname(lua_State *L) {
|
||||||
struct utsname uname_info;
|
struct utsname uname_info;
|
||||||
|
|
||||||
if(uname(&uname_info) != 0) {
|
if(uname(&uname_info) != 0) {
|
||||||
|
@ -692,7 +692,7 @@ int lc_uname(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_setenv(lua_State *L) {
|
static int lc_setenv(lua_State *L) {
|
||||||
const char *var = luaL_checkstring(L, 1);
|
const char *var = luaL_checkstring(L, 1);
|
||||||
const char *value;
|
const char *value;
|
||||||
|
|
||||||
|
@ -721,7 +721,7 @@ int lc_setenv(lua_State *L) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef WITH_MALLINFO
|
#ifdef WITH_MALLINFO
|
||||||
int lc_meminfo(lua_State *L) {
|
static int lc_meminfo(lua_State *L) {
|
||||||
struct mallinfo info = mallinfo();
|
struct mallinfo info = mallinfo();
|
||||||
lua_createtable(L, 0, 5);
|
lua_createtable(L, 0, 5);
|
||||||
/* This is the total size of memory allocated with sbrk by malloc, in bytes. */
|
/* This is the total size of memory allocated with sbrk by malloc, in bytes. */
|
||||||
|
@ -749,7 +749,7 @@ int lc_meminfo(lua_State *L) {
|
||||||
* Attempt to allocate space first
|
* Attempt to allocate space first
|
||||||
* Truncate to original size on failure
|
* Truncate to original size on failure
|
||||||
*/
|
*/
|
||||||
int lc_atomic_append(lua_State *L) {
|
static int lc_atomic_append(lua_State *L) {
|
||||||
int err;
|
int err;
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
|
|
|
@ -15,23 +15,18 @@ typedef struct {
|
||||||
char buffer[];
|
char buffer[];
|
||||||
} ringbuffer;
|
} ringbuffer;
|
||||||
|
|
||||||
char readchar(ringbuffer *b) {
|
static void writechar(ringbuffer *b, char c) {
|
||||||
b->blen--;
|
|
||||||
return b->buffer[(b->rpos++) % b->alen];
|
|
||||||
}
|
|
||||||
|
|
||||||
void writechar(ringbuffer *b, char c) {
|
|
||||||
b->blen++;
|
b->blen++;
|
||||||
b->buffer[(b->wpos++) % b->alen] = c;
|
b->buffer[(b->wpos++) % b->alen] = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* make sure position counters stay within the allocation */
|
/* make sure position counters stay within the allocation */
|
||||||
void modpos(ringbuffer *b) {
|
static void modpos(ringbuffer *b) {
|
||||||
b->rpos = b->rpos % b->alen;
|
b->rpos = b->rpos % b->alen;
|
||||||
b->wpos = b->wpos % b->alen;
|
b->wpos = b->wpos % b->alen;
|
||||||
}
|
}
|
||||||
|
|
||||||
int find(ringbuffer *b, const char *s, size_t l) {
|
static int find(ringbuffer *b, const char *s, size_t l) {
|
||||||
size_t i, j;
|
size_t i, j;
|
||||||
int m;
|
int m;
|
||||||
|
|
||||||
|
@ -64,7 +59,7 @@ int find(ringbuffer *b, const char *s, size_t l) {
|
||||||
* Find first position of a substring in buffer
|
* Find first position of a substring in buffer
|
||||||
* (buffer, string) -> number
|
* (buffer, string) -> number
|
||||||
*/
|
*/
|
||||||
int rb_find(lua_State *L) {
|
static int rb_find(lua_State *L) {
|
||||||
size_t l, m;
|
size_t l, m;
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
const char *s = luaL_checklstring(L, 2, &l);
|
const char *s = luaL_checklstring(L, 2, &l);
|
||||||
|
@ -82,7 +77,7 @@ int rb_find(lua_State *L) {
|
||||||
* Move read position forward without returning the data
|
* Move read position forward without returning the data
|
||||||
* (buffer, number) -> boolean
|
* (buffer, number) -> boolean
|
||||||
*/
|
*/
|
||||||
int rb_discard(lua_State *L) {
|
static int rb_discard(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
size_t r = luaL_checkinteger(L, 2);
|
size_t r = luaL_checkinteger(L, 2);
|
||||||
|
|
||||||
|
@ -103,7 +98,7 @@ int rb_discard(lua_State *L) {
|
||||||
* Read bytes from buffer
|
* Read bytes from buffer
|
||||||
* (buffer, number, boolean?) -> string
|
* (buffer, number, boolean?) -> string
|
||||||
*/
|
*/
|
||||||
int rb_read(lua_State *L) {
|
static int rb_read(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
size_t r = luaL_checkinteger(L, 2);
|
size_t r = luaL_checkinteger(L, 2);
|
||||||
int peek = lua_toboolean(L, 3);
|
int peek = lua_toboolean(L, 3);
|
||||||
|
@ -135,7 +130,7 @@ int rb_read(lua_State *L) {
|
||||||
* Read buffer until first occurrence of a substring
|
* Read buffer until first occurrence of a substring
|
||||||
* (buffer, string) -> string
|
* (buffer, string) -> string
|
||||||
*/
|
*/
|
||||||
int rb_readuntil(lua_State *L) {
|
static int rb_readuntil(lua_State *L) {
|
||||||
size_t l, m;
|
size_t l, m;
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
const char *s = luaL_checklstring(L, 2, &l);
|
const char *s = luaL_checklstring(L, 2, &l);
|
||||||
|
@ -154,7 +149,7 @@ int rb_readuntil(lua_State *L) {
|
||||||
* Write bytes into the buffer
|
* Write bytes into the buffer
|
||||||
* (buffer, string) -> integer
|
* (buffer, string) -> integer
|
||||||
*/
|
*/
|
||||||
int rb_write(lua_State *L) {
|
static int rb_write(lua_State *L) {
|
||||||
size_t l, w = 0;
|
size_t l, w = 0;
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
const char *s = luaL_checklstring(L, 2, &l);
|
const char *s = luaL_checklstring(L, 2, &l);
|
||||||
|
@ -177,31 +172,31 @@ int rb_write(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rb_tostring(lua_State *L) {
|
static int rb_tostring(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
lua_pushfstring(L, "ringbuffer: %p %d/%d", b, b->blen, b->alen);
|
lua_pushfstring(L, "ringbuffer: %p %d/%d", b, b->blen, b->alen);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rb_length(lua_State *L) {
|
static int rb_length(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
lua_pushinteger(L, b->blen);
|
lua_pushinteger(L, b->blen);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rb_size(lua_State *L) {
|
static int rb_size(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
lua_pushinteger(L, b->alen);
|
lua_pushinteger(L, b->alen);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rb_free(lua_State *L) {
|
static int rb_free(lua_State *L) {
|
||||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||||
lua_pushinteger(L, b->alen - b->blen);
|
lua_pushinteger(L, b->alen - b->blen);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rb_new(lua_State *L) {
|
static int rb_new(lua_State *L) {
|
||||||
size_t size = luaL_optinteger(L, 1, sysconf(_SC_PAGESIZE));
|
size_t size = luaL_optinteger(L, 1, sysconf(_SC_PAGESIZE));
|
||||||
ringbuffer *b = lua_newuserdata(L, sizeof(ringbuffer) + size);
|
ringbuffer *b = lua_newuserdata(L, sizeof(ringbuffer) + size);
|
||||||
|
|
||||||
|
|
|
@ -164,8 +164,8 @@ static lua_Hook Hsig = NULL;
|
||||||
static int Hmask = 0;
|
static int Hmask = 0;
|
||||||
static int Hcount = 0;
|
static int Hcount = 0;
|
||||||
|
|
||||||
int signals[MAX_PENDING_SIGNALS];
|
static int signals[MAX_PENDING_SIGNALS];
|
||||||
int nsig = 0;
|
static int nsig = 0;
|
||||||
|
|
||||||
static void sighook(lua_State *L, lua_Debug *ar) {
|
static void sighook(lua_State *L, lua_Debug *ar) {
|
||||||
(void)ar;
|
(void)ar;
|
||||||
|
|
|
@ -5,18 +5,18 @@
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <lua.h>
|
#include <lua.h>
|
||||||
|
|
||||||
lua_Number tv2number(struct timespec *tv) {
|
static lua_Number tv2number(struct timespec *tv) {
|
||||||
return tv->tv_sec + tv->tv_nsec * 1e-9;
|
return tv->tv_sec + tv->tv_nsec * 1e-9;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_time_realtime(lua_State *L) {
|
static int lc_time_realtime(lua_State *L) {
|
||||||
struct timespec t;
|
struct timespec t;
|
||||||
clock_gettime(CLOCK_REALTIME, &t);
|
clock_gettime(CLOCK_REALTIME, &t);
|
||||||
lua_pushnumber(L, tv2number(&t));
|
lua_pushnumber(L, tv2number(&t));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lc_time_monotonic(lua_State *L) {
|
static int lc_time_monotonic(lua_State *L) {
|
||||||
struct timespec t;
|
struct timespec t;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &t);
|
clock_gettime(CLOCK_MONOTONIC, &t);
|
||||||
lua_pushnumber(L, tv2number(&t));
|
lua_pushnumber(L, tv2number(&t));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue