#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/un.h>
#include <sys/ipc.h>
#include <sys/mman.h>
#include <sys/fcntl.h>
#include <sys/syslimits.h>
#include <sys/param.h>
#include <sys/resource.h>
#include <asl.h>
#include <assert.h>
#include <TargetConditionals.h>
#include "pathwatch.h"
#include "notifyd.h"
#include "service.h"
#include "notify_ipc.h"
#include "pathwatch.h"
#include "timer.h"
#define forever for(;;)
#define IndexNull -1
#define RUN_TIME_CHECKS
#define NOTIFYD_PROCESS_FLAG 0x00000001
#define CONFIG_FILE_PATH "/etc/notify.conf"
#define DEBUG_LOG_PATH "/var/log/notifyd.log"
#define STATUS_REQUEST_SHORT 0
#define STATUS_REQUEST_LONG 1
#define N_NOTIFY_TYPES 6
static char *status_file = NULL;
static const char *notify_type_name[] =
{
"none", "plain", "memory", "port", "file", "signal"
};
extern int __notify_78945668_info__;
typedef union
{
mach_msg_header_t head;
union __RequestUnion__notify_ipc_subsystem request;
} notify_request_msg;
typedef union
{
mach_msg_header_t head;
union __ReplyUnion__notify_ipc_subsystem reply;
} notify_reply_msg;
extern boolean_t notify_ipc_server(mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP);
static void
fprint_client(FILE *f, client_t *c)
{
if (c == NULL)
{
fprintf(f, "NULL client\n");
return;
}
if (c->info == NULL)
{
fprintf(f, "freelist client\n");
return;
}
fprintf(f, "client_id: %u\n", c->client_id);
fprintf(f, "pid: %d\n", c->info->pid);
fprintf(f, "lastval: %u\n", c->info->lastval);
fprintf(f, "type: %s\n", notify_type_name[c->info->notify_type]);
switch(c->info->notify_type)
{
case NOTIFY_TYPE_NONE:
break;
case NOTIFY_TYPE_PLAIN:
break;
case NOTIFY_TYPE_MEMORY:
break;
case NOTIFY_TYPE_PORT:
fprintf(f, "mach port: 0x%08x\n", c->info->msg->header.msgh_remote_port);
fprintf(f, "token: %u\n", c->info->token);
break;
case NOTIFY_TYPE_FD:
fprintf(f, "fd: %d\n", c->info->fd);
fprintf(f, "token: %u\n", c->info->token);
break;
case NOTIFY_TYPE_SIGNAL:
fprintf(f, "signal: %d\n", c->info->sig);
break;
default: break;
}
}
static void
fprint_quick_client(FILE *f, client_t *c)
{
if (c == NULL) return;
fprintf(f, " %u %s", c->info->pid, notify_type_name[c->info->notify_type]);
if (c->info->notify_type == NOTIFY_TYPE_SIGNAL) fprintf(f, " %d", c->info->sig);
fprintf(f, "\n");
}
static void
fprint_quick_name_info(FILE *f, name_info_t *n)
{
list_t *c;
if (n == NULL) return;
fprintf(f, "\"%s\" uid=%u gid=%u %03x", n->name, n->uid, n->gid, n->access);
if (n->slot != -1)
{
fprintf(f, " slot %u", n->slot);
if (global.shared_memory_refcount[n->slot] != -1) fprintf(f, " = %u", global.shared_memory_base[n->slot]);
}
fprintf(f, "\n");
for (c = n->client_list; c != NULL; c = _nc_list_next(c))
{
fprint_quick_client(f, _nc_list_data(c));
}
fprintf(f, "\n");
}
static void
fprint_name_info(FILE *f, const char *name, name_info_t *n, table_t *client_table, pid_t *max_pid)
{
list_t *c;
uint32_t i, reg[N_NOTIFY_TYPES];
if (n == NULL)
{
fprintf(f, "%s unknown\n", name);
return;
}
fprintf(f, "name: %s\n", n->name);
fprintf(f, "uid: %u\n", n->uid);
fprintf(f, "gid: %u\n", n->gid);
fprintf(f, "access: %03x\n", n->access);
fprintf(f, "refcount: %u\n", n->refcount);
if (n->slot == -1) fprintf(f, "slot: -unassigned-");
else
{
fprintf(f, "slot: %u", n->slot);
if (global.shared_memory_refcount[n->slot] != -1)
fprintf(f, " = %u (%u)", global.shared_memory_base[n->slot], global.shared_memory_refcount[n->slot]);
}
fprintf(f, "\n");
fprintf(f, "val: %u\n", n->val);
fprintf(f, "state: %llu\n", n->state);
for (i = 0; i < N_NOTIFY_TYPES; i++) reg[i] = 0;
for (c = n->client_list; c != NULL; c = _nc_list_next(c))
{
client_t *x = _nc_list_data(c);
list_t *l;
if (x->info->pid > *max_pid) *max_pid = x->info->pid;
l = _nc_table_find_n(client_table, x->info->pid);
if (l == NULL)
{
_nc_table_insert_n(client_table, (uint32_t)x->info->pid, _nc_list_new(x));
}
else
{
_nc_list_concat(l, _nc_list_new(x));
}
reg[x->info->notify_type]++;
}
fprintf(f, "types: none %u plain %u memory %u port %u file %u signal %u\n", reg[0], reg[1], reg[2], reg[3], reg[4], reg[5]);
for (c = n->client_list; c != NULL; c = _nc_list_next(c))
{
fprintf(f, "\n");
fprint_client(f, _nc_list_data(c));
}
}
void
fprint_quick_status(FILE *f)
{
void *tt;
name_info_t *n;
tt = _nc_table_traverse_start(global.notify_state->name_table);
while (tt != NULL)
{
n = _nc_table_traverse(global.notify_state->name_table, tt);
if (n == NULL) break;
fprint_quick_name_info(f, n);
}
_nc_table_traverse_end(global.notify_state->name_table, tt);
fprintf(f, "\n");
}
void
fprint_status(FILE *f)
{
void *tt;
name_info_t *n;
int32_t i;
list_t *l;
client_t *c;
svc_info_t *info;
path_node_t *node;
timer_t *timer;
table_t *client_table;
pid_t pid, max_pid;
client_table = _nc_table_new(0);
max_pid = 0;
fprintf(f, "--- GLOBALS ---\n");
fprintf(f, "%u slots (current id %u)\n", global.nslots, global.slot_id);
fprintf(f, "%u log_cutoff (default %u)\n", global.log_cutoff, global.log_default);
fprintf(f, "\n");
tt = _nc_table_traverse_start(global.notify_state->name_table);
fprintf(f, "--- NAMES ---\n");
while (tt != NULL)
{
n = _nc_table_traverse(global.notify_state->name_table, tt);
if (n == NULL) break;
fprint_name_info(f, n->name, n, client_table, &max_pid);
fprintf(f, "\n");
}
_nc_table_traverse_end(global.notify_state->name_table, tt);
fprintf(f, "\n");
fprintf(f, "--- CONTROLLED NAMES ---\n");
for (i = 0; i < global.notify_state->controlled_name_count; i++)
{
fprintf(f, "%s %u %u %03x\n", global.notify_state->controlled_name[i]->name, global.notify_state->controlled_name[i]->uid, global.notify_state->controlled_name[i]->gid, global.notify_state->controlled_name[i]->access);
}
fprintf(f, "\n");
fprintf(f, "--- PUBLIC SERVICES ---\n");
tt = _nc_table_traverse_start(global.notify_state->name_table);
while (tt != NULL)
{
n = _nc_table_traverse(global.notify_state->name_table, tt);
if (n == NULL) break;
if (n->private == NULL) continue;
info = (svc_info_t *)n->private;
if (info->type == 0)
{
fprintf(f, "Null service: %s\n", n->name);
}
if (info->type == SERVICE_TYPE_PATH_PUBLIC)
{
node = (path_node_t *)info->private;
fprintf(f, "Path Service: %s <- %s\n", n->name, node->path);
}
else if (info->type == SERVICE_TYPE_TIMER_PUBLIC)
{
timer = (timer_t *)info->private;
switch (timer->type)
{
case TIME_EVENT_ONESHOT:
{
fprintf(f, "Time Service: %s <- Oneshot %llu\n", n->name, timer->start);
break;
}
case TIME_EVENT_CLOCK:
{
fprintf(f, "Time Service: %s <- Clock start %lld freq %u end %lld\n", n->name, timer->start, timer->freq, timer->end);
break;
}
case TIME_EVENT_CAL:
{
fprintf(f, "Time Service: %s <- Calendar start %lld freq %u end %lld day %d\n", n->name, timer->start, timer->freq, timer->end, timer->day);
break;
}
}
}
else
{
fprintf(f, "Unknown service: %s (%u)\n", n->name, info->type);
}
}
_nc_table_traverse_end(global.notify_state->name_table, tt);
fprintf(f, "\n");
fprintf(f, "--- PRIVATE SERVICES ---\n");
tt = _nc_table_traverse_start(global.notify_state->client_table);
while (tt != NULL)
{
c = _nc_table_traverse(global.notify_state->client_table, tt);
if (c == NULL) break;
if (c->info == NULL) continue;
if (c->info->private == NULL) continue;
info = (svc_info_t *)c->info->private;
n = c->info->name_info;
if (info->type == 0)
{
fprintf(f, "PID %u Null service: %s\n", c->info->pid, n->name);
}
if (info->type == SERVICE_TYPE_PATH_PRIVATE)
{
node = (path_node_t *)info->private;
fprintf(f, "PID %u Path Service: %s <- %s (UID %d GID %d)\n", c->info->pid, n->name, node->path, node->uid, node->gid);
}
else if (info->type == SERVICE_TYPE_TIMER_PRIVATE)
{
timer = (timer_t *)info->private;
switch (timer->type)
{
case TIME_EVENT_ONESHOT:
{
fprintf(f, "PID %u Time Service: %s <- Oneshot %llu\n", c->info->pid, n->name, timer->start);
break;
}
case TIME_EVENT_CLOCK:
{
fprintf(f, "PID %u Time Service: %s <- Clock start %lld freq %u end %lld\n", c->info->pid, n->name, timer->start, timer->freq, timer->end);
break;
}
case TIME_EVENT_CAL:
{
fprintf(f, "PID %u Time Service: %s <- Calendar start %lld freq %u end %lld day %d\n", c->info->pid, n->name, timer->start, timer->freq, timer->end, timer->day);
break;
}
}
}
}
_nc_table_traverse_end(global.notify_state->client_table, tt);
fprintf(f, "\n");
fprintf(f, "--- CLIENTS ---\n");
for (pid = 0; pid <= max_pid; pid++)
{
list_t *x;
list_t *l = _nc_table_find_n(client_table, pid);
if (l == NULL) continue;
fprintf(f, "pid: %u\n", pid);
for (x = l; x != NULL; x = _nc_list_next(x))
{
c = _nc_list_data(x);
if (c != NULL)
{
fprintf(f, " %s: %s\n", notify_type_name[c->info->notify_type], c->info->name_info->name);
}
}
fprintf(f, "\n");
_nc_list_release_list(l);
}
fprintf(f, "\n");
_nc_table_free(client_table);
fprintf(f, "--- CLIENT FREELIST ---\n");
l = global.notify_state->free_client_list;
if (l == NULL) fprintf(f, "NULL\n");
while (l != NULL)
{
c = _nc_list_data(l);
fprintf(f, "%u", c->client_id);
l = _nc_list_next(l);
if (l != NULL) fprintf(f, " ");
}
fprintf(f, "\n");
}
void
dump_status(uint32_t level)
{
FILE *f;
if (status_file == NULL)
{
asprintf(&status_file, "/var/run/notifyd_%u.status", getpid());
if (status_file == NULL) return;
}
unlink(status_file);
f = fopen(status_file, "w");
if (f == NULL) return;
if (level == STATUS_REQUEST_SHORT) fprint_quick_status(f);
else if (level == STATUS_REQUEST_LONG) fprint_status(f);
fclose(f);
}
void
log_message(int priority, const char *str, ...)
{
time_t t;
char now[32];
va_list ap;
if (priority > global.log_cutoff) return;
va_start(ap, str);
if (global.log_file != NULL)
{
t = time(NULL);
memset(now, 0, 32);
strftime(now, 32, "%b %e %T", localtime(&t));
fprintf(global.log_file, "%s: ", now);
vfprintf(global.log_file, str, ap);
fflush(global.log_file);
}
else
{
vfprintf(stderr, str, ap);
}
va_end(ap);
}
uint32_t
daemon_post(const char *name, uint32_t u, uint32_t g)
{
name_info_t *n;
uint32_t status;
if (name == NULL) return 0;
n = (name_info_t *)_nc_table_find(global.notify_state->name_table, name);
if (n == NULL) return 0;
if (n->slot != (uint32_t)-1) global.shared_memory_base[n->slot]++;
status = _notify_lib_post(global.notify_state, name, u, g);
return status;
}
void
daemon_post_client(uint32_t cid)
{
client_t *c;
c = _nc_table_find_n(global.notify_state->client_table, cid);
if (c == NULL) return;
_notify_lib_post_client(global.notify_state, c);
}
void
daemon_set_state(const char *name, uint64_t val)
{
name_info_t *n;
if (name == NULL) return;
n = (name_info_t *)_nc_table_find(global.notify_state->name_table, name);
if (n == NULL) return;
n->state = val;
}
void
init_launch_config(const char *name)
{
launch_data_t tmp, pdict;
tmp = launch_data_new_string(LAUNCH_KEY_CHECKIN);
global.launch_dict = launch_msg(tmp);
launch_data_free(tmp);
if (global.launch_dict == NULL)
{
fprintf(stderr, "%d launchd checkin failed\n", getpid());
exit(1);
}
tmp = launch_data_dict_lookup(global.launch_dict, LAUNCH_JOBKEY_MACHSERVICES);
if (tmp == NULL)
{
fprintf(stderr, "%d launchd lookup of LAUNCH_JOBKEY_MACHSERVICES failed\n", getpid());
exit(1);
}
pdict = launch_data_dict_lookup(tmp, name);
if (pdict == NULL)
{
fprintf(stderr, "%d launchd lookup of name %s failed\n", getpid(), name);
exit(1);
}
global.server_port = launch_data_get_machport(pdict);
if (global.server_port == MACH_PORT_NULL)
{
fprintf(stderr, "%d launchd lookup of server port for name %s failed\n", getpid(), name);
exit(1);
}
}
static void
string_list_free(char **l)
{
int i;
if (l == NULL) return;
for (i = 0; l[i] != NULL; i++)
{
if (l[i] != NULL) free(l[i]);
l[i] = NULL;
}
free(l);
}
static char **
string_insert(char *s, char **l, unsigned int x)
{
int i, len;
if (s == NULL) return l;
if (l == NULL)
{
l = (char **)malloc(2 * sizeof(char *));
l[0] = strdup(s);
l[1] = NULL;
return l;
}
for (i = 0; l[i] != NULL; i++);
len = i + 1;
l = (char **)realloc(l, (len + 1) * sizeof(char *));
if ((x >= (len - 1)) || (x == IndexNull))
{
l[len - 1] = strdup(s);
l[len] = NULL;
return l;
}
for (i = len; i > x; i--) l[i] = l[i - 1];
l[x] = strdup(s);
return l;
}
static char **
string_append(char *s, char **l)
{
return string_insert(s, l, IndexNull);
}
static unsigned int
string_list_length(char **l)
{
int i;
if (l == NULL) return 0;
for (i = 0; l[i] != NULL; i++);
return i;
}
static unsigned int
string_index(char c, char *s)
{
int i;
char *p;
if (s == NULL) return IndexNull;
for (i = 0, p = s; p[0] != '\0'; p++, i++)
{
if (p[0] == c) return i;
}
return IndexNull;
}
static char **
explode(char *s, char *delim)
{
char **l = NULL;
char *p, *t;
int i, n;
if (s == NULL) return NULL;
p = s;
while (p[0] != '\0')
{
for (i = 0; ((p[i] != '\0') && (string_index(p[i], delim) == IndexNull)); i++);
n = i;
t = malloc(n + 1);
for (i = 0; i < n; i++) t[i] = p[i];
t[n] = '\0';
l = string_append(t, l);
free(t);
t = NULL;
if (p[i] == '\0') return l;
if (p[i + 1] == '\0') l = string_append("", l);
p = p + i + 1;
}
return l;
}
static uint32_t
atoaccess(char *s)
{
uint32_t a;
if (s == NULL) return 0;
if (strlen(s) != 6) return 0;
a = 0;
if (s[0] == 'r') a |= (NOTIFY_ACCESS_READ << NOTIFY_ACCESS_USER_SHIFT);
if (s[1] == 'w') a |= (NOTIFY_ACCESS_WRITE << NOTIFY_ACCESS_USER_SHIFT);
if (s[2] == 'r') a |= (NOTIFY_ACCESS_READ << NOTIFY_ACCESS_GROUP_SHIFT);
if (s[3] == 'w') a |= (NOTIFY_ACCESS_WRITE << NOTIFY_ACCESS_GROUP_SHIFT);
if (s[4] == 'r') a |= (NOTIFY_ACCESS_READ << NOTIFY_ACCESS_OTHER_SHIFT);
if (s[5] == 'w') a |= (NOTIFY_ACCESS_WRITE << NOTIFY_ACCESS_OTHER_SHIFT);
return a;
}
static void
init_config()
{
FILE *f;
struct stat sb;
char line[1024];
char **args;
uint32_t status, argslen;
uint32_t uid, gid, access, cid;
uint64_t val64;
if (stat(CONFIG_FILE_PATH, &sb) != 0) return;
if (sb.st_uid != 0)
{
log_message(ASL_LEVEL_ERR, "config file %s not owned by root: ignored\n", CONFIG_FILE_PATH);
return;
}
if (sb.st_mode & 02)
{
log_message(ASL_LEVEL_ERR, "config file %s is world-writable: ignored\n", CONFIG_FILE_PATH);
return;
}
f = fopen(CONFIG_FILE_PATH, "r");
if (f == NULL) return;
forever
{
if (fgets(line, 1024, f) == NULL) break;
if (line[0] == '\0') continue;
if (line[0] == '#') continue;
line[strlen(line) - 1] = '\0';
args = explode(line, "\t ");
argslen = string_list_length(args);
if (argslen == 0) continue;
if (!strcasecmp(args[0], "monitor"))
{
if (argslen < 3)
{
string_list_free(args);
continue;
}
_notify_lib_register_plain(global.notify_state, args[1], -1, 0, 0, &cid);
service_open_path(args[1], args[2], 0, 0);
}
if (!strcasecmp(args[0], "timer"))
{
if (argslen < 3)
{
string_list_free(args);
continue;
}
_notify_lib_register_plain(global.notify_state, args[1], -1, 0, 0, &cid);
status = service_open_timer(args[1], args[2]);
}
else if (!strcasecmp(args[0], "set"))
{
if (argslen < 3)
{
string_list_free(args);
continue;
}
val64 = atoll(args[2]);
_notify_lib_register_plain(global.notify_state, args[1], -1, 0, 0, &cid);
_notify_lib_set_state(global.notify_state, cid, val64, 0, 0);
}
else if (!strcasecmp(args[0], "reserve"))
{
if (argslen == 1)
{
string_list_free(args);
continue;
}
uid = 0;
gid = 0;
access = NOTIFY_ACCESS_DEFAULT;
if (argslen > 2) uid = atoi(args[2]);
if (argslen > 3) gid = atoi(args[3]);
if (argslen > 4) access = atoaccess(args[4]);
if ((uid != 0) || (gid != 0)) _notify_lib_set_owner(global.notify_state, args[1], uid, gid);
if (access != NOTIFY_ACCESS_DEFAULT) _notify_lib_set_access(global.notify_state, args[1], access);
}
else if (!strcasecmp(args[0], "quit"))
{
string_list_free(args);
break;
}
string_list_free(args);
}
fclose(f);
}
void
service_mach_message(bool blocking)
{
__block kern_return_t status;
uint32_t rbits, sbits;
notify_request_msg *request;
notify_reply_msg *reply;
char rbuf[sizeof(notify_request_msg) + MAX_TRAILER_SIZE];
char sbuf[sizeof(notify_reply_msg) + MAX_TRAILER_SIZE];
forever
{
memset(rbuf, 0, sizeof(rbuf));
memset(sbuf, 0, sizeof(sbuf));
request = (notify_request_msg *)rbuf;
reply = (notify_reply_msg *)sbuf;
request->head.msgh_local_port = global.server_port;
request->head.msgh_size = global.request_size;
rbits = MACH_RCV_MSG | (blocking ? 0 : MACH_RCV_TIMEOUT) | MACH_RCV_TRAILER_ELEMENTS(MACH_RCV_TRAILER_AUDIT) | MACH_RCV_TRAILER_TYPE(MACH_MSG_TRAILER_FORMAT_0);
sbits = MACH_SEND_MSG;
status = mach_msg(&(request->head), rbits, 0, global.request_size, global.server_port, 0, MACH_PORT_NULL);
if (status != KERN_SUCCESS) return;
#if TARGET_OS_EMBEDDED
dispatch_sync(global.work_q, ^{
status = notify_ipc_server(&(request->head), &(reply->head));
});
#else
status = notify_ipc_server(&(request->head), &(reply->head));
#endif
if (!status && (request->head.msgh_bits & MACH_MSGH_BITS_COMPLEX))
{
request->head.msgh_remote_port = MACH_PORT_NULL;
mach_msg_destroy(&(request->head));
}
if (reply->head.msgh_remote_port)
{
status = mach_msg(&(reply->head), sbits, reply->head.msgh_size, 0, MACH_PORT_NULL, 0, MACH_PORT_NULL);
if (status == MACH_SEND_INVALID_DEST || status == MACH_SEND_TIMED_OUT)
{
mach_msg_destroy(&(reply->head));
}
}
}
}
static int32_t
open_shared_memory(const char *name)
{
int32_t shmfd;
uint32_t size;
size = global.nslots * sizeof(uint32_t);
shmfd = shm_open(name, O_RDWR | O_CREAT, 0644);
if (shmfd == -1)
{
fprintf(stderr, "shm_open %s failed: %s\n", name, strerror(errno));
return -1;
}
ftruncate(shmfd, size);
global.shared_memory_base = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, shmfd, 0);
close(shmfd);
memset(global.shared_memory_base, 0, size);
global.shared_memory_refcount = (uint32_t *)malloc(size);
if (global.shared_memory_refcount == NULL) return -1;
memset(global.shared_memory_refcount, 0, size);
return 0;
}
int
main(int argc, const char *argv[])
{
dispatch_queue_t main_q;
dispatch_source_t mach_src, sig_usr1_src, sig_usr2_src, sig_winch_src;
const char *service_name;
const char *shm_name;
uint32_t i, status;
struct rlimit rlim;
service_name = NOTIFY_SERVICE_NAME;
shm_name = SHM_ID;
#ifdef PORT_DEBUG
debug_log_file = fopen("/var/log/notifyd.log", "a");
#endif
__notify_78945668_info__ = NOTIFYD_PROCESS_FLAG;
rlim.rlim_max = RLIM_INFINITY;
rlim.rlim_cur = MIN(OPEN_MAX, rlim.rlim_max);
setrlimit(RLIMIT_NOFILE, &rlim);
signal(SIGPIPE, SIG_IGN);
signal(SIGHUP, SIG_IGN);
signal(SIGUSR1, SIG_IGN);
signal(SIGUSR2, SIG_IGN);
signal(SIGWINCH, SIG_IGN);
global.request_size = sizeof(notify_request_msg) + MAX_TRAILER_SIZE;
global.reply_size = sizeof(notify_reply_msg) + MAX_TRAILER_SIZE;
global.nslots = getpagesize() / sizeof(uint32_t);
global.notify_state = _notify_lib_notify_state_new(0, 1024);
global.log_cutoff = ASL_LEVEL_NOTICE;
global.log_file = NULL;
global.slot_id = (uint32_t)-1;
for (i = 1; i < argc; i++)
{
if (!strcmp(argv[i], "-d"))
{
global.log_cutoff = ASL_LEVEL_DEBUG;
}
else if (!strcmp(argv[i], "-log_cutoff"))
{
global.log_cutoff = atoi(argv[++i]);
}
else if (!strcmp(argv[i], "-log_file"))
{
if (global.log_file != NULL) fclose(global.log_file);
global.log_file = fopen(argv[++i], "a");
}
else if (!strcmp(argv[i], "-service"))
{
service_name = argv[++i];
}
else if (!strcmp(argv[i], "-shm"))
{
shm_name = argv[++i];
}
else if (!strcmp(argv[i], "-shm_pages"))
{
global.nslots = atoi(argv[++i]) * (getpagesize() / sizeof(uint32_t));
}
}
global.log_default = global.log_cutoff;
if (global.log_file == NULL)
{
global.log_file = fopen(DEBUG_LOG_PATH, "a");
}
log_message(ASL_LEVEL_DEBUG, "--------------------\n");
log_message(ASL_LEVEL_DEBUG, "notifyd start PID %u\n", getpid());
init_launch_config(service_name);
if (global.nslots > 0)
{
status = open_shared_memory(shm_name);
assert(status == 0);
}
main_q = dispatch_get_main_queue();
assert(main_q != NULL);
global.work_q = dispatch_queue_create("WorkQ", NULL);
assert(global.work_q != NULL);
init_config();
#if TARGET_OS_EMBEDDED
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
forever service_mach_message(true);
});
#else
mach_src = dispatch_source_create(DISPATCH_SOURCE_TYPE_MACH_RECV, global.server_port, 0, global.work_q);
assert(mach_src != NULL);
dispatch_source_set_event_handler(mach_src, ^{
service_mach_message(false);
});
dispatch_resume(mach_src);
#endif
sig_usr1_src = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, (uintptr_t)SIGUSR1, 0, main_q);
assert(sig_usr1_src != NULL);
dispatch_source_set_event_handler(sig_usr1_src, ^{
dispatch_async(global.work_q, ^{ dump_status(STATUS_REQUEST_SHORT); });
});
dispatch_resume(sig_usr1_src);
sig_usr2_src = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, (uintptr_t)SIGUSR2, 0, main_q);
assert(sig_usr2_src != NULL);
dispatch_source_set_event_handler(sig_usr2_src, ^{
dispatch_async(global.work_q, ^{ dump_status(STATUS_REQUEST_LONG); });
});
dispatch_resume(sig_usr2_src);
sig_winch_src = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, (uintptr_t)SIGWINCH, 0, main_q);
assert(sig_winch_src != NULL);
dispatch_source_set_event_handler(sig_winch_src, ^{
if (global.log_cutoff == ASL_LEVEL_DEBUG) global.log_cutoff = global.log_default;
else global.log_cutoff = ASL_LEVEL_DEBUG;
});
dispatch_resume(sig_winch_src);
dispatch_main();
return 0;
}