diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-03-15 23:18:33 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-03-15 23:18:33 +0900 |
commit | f0c70a148bffeb4faa362a3e696857461aae0419 (patch) | |
tree | 6f24288b9b04f4424170bf832c0ef27e0ca1cc7f /src | |
parent | e038b3020d0487337fd33205c819e23fa63ee96f (diff) |
macOS does not support sem_init. use sem_open instead
Diffstat (limited to 'src')
-rw-r--r-- | src/mscp.c | 31 | ||||
-rw-r--r-- | src/platform.c | 11 | ||||
-rw-r--r-- | src/platform.h | 7 |
3 files changed, 43 insertions, 6 deletions
@@ -26,7 +26,7 @@ struct mscp { int *cores; /* usable cpu cores by COREMASK */ int nr_cores; /* length of array of cores */ - sem_t sem; /* semaphore for concurrent + sem_t *sem; /* semaphore for concurrent * connecting ssh sessions */ sftp_session first; /* first sftp session */ @@ -204,9 +204,24 @@ static int validate_and_set_defaut_params(struct mscp_opts *o) return 0; } +static int random_string(char *buf, size_t size) +{ + char chars[] = "abcdefhijklmnopkwxyz1234567890"; + int n, x; + + for (n = 0; n < size - 1; n++) { + x = get_random(sizeof(chars) - 1); + buf[n] = chars[x]; + } + buf[size - 1] = '\0'; + + return 0; +} + struct mscp *mscp_init(const char *remote_host, int direction, struct mscp_opts *o, struct mscp_ssh_opts *s) { + char sem_name[PSEMNAMLEN] = "mscp-"; struct mscp *m; int n; @@ -237,8 +252,13 @@ struct mscp *mscp_init(const char *remote_host, int direction, INIT_LIST_HEAD(&m->src_list); INIT_LIST_HEAD(&m->path_list); chunk_pool_init(&m->cp); - if (sem_init(&m->sem, 0, o->max_startups) < 0) { - mscp_set_error("failed to initialize semaphore: %s", strerrno()); + + n = strlen(sem_name); + if (random_string(sem_name + n, sizeof(sem_name) - n - 1) < 0) + goto free_out; + + if ((m->sem = sem_open(sem_name, O_CREAT, 600, o->max_startups)) == SEM_FAILED) { + mscp_set_error("sem_open: %s", strerrno()); goto free_out; } @@ -567,7 +587,7 @@ void *mscp_copy_thread(void *arg) } } - if (sem_wait(&m->sem) < 0) { + if (sem_wait(m->sem) < 0) { mscp_set_error("sem_wait: %s\n", strerrno()); mpr_err(m->msg_fp, "%s", mscp_get_error()); goto err_out; @@ -577,7 +597,7 @@ void *mscp_copy_thread(void *arg) m->remote, t->id); t->sftp = ssh_init_sftp_session(m->remote, m->ssh_opts); - if (sem_post(&m->sem) < 0) { + if (sem_post(m->sem) < 0) { mscp_set_error("sem_post: %s\n", strerrno()); mpr_err(m->msg_fp, "%s", mscp_get_error()); goto err_out; @@ -688,6 +708,7 @@ void mscp_free(struct mscp *m) free(m->remote); if (m->cores) free(m->cores); + sem_close(m->sem); free(m); } diff --git a/src/platform.c b/src/platform.c index 078fc93..7d6a94d 100644 --- a/src/platform.c +++ b/src/platform.c @@ -1,4 +1,5 @@ #ifdef __APPLE__ +#include <stdlib.h> #include <sys/types.h> #include <sys/sysctl.h> #elif linux @@ -32,6 +33,11 @@ int set_thread_affinity(pthread_t tid, int core) return 0; } +int get_random(int max) +{ + return arc4random() % max; +} + #endif #ifdef linux @@ -56,5 +62,10 @@ int set_thread_affinity(pthread_t tid, int core) core, strerrno()); return ret; } + +int get_random(int max) +{ + return random() % max; +} #endif diff --git a/src/platform.h b/src/platform.h index 7fddfc4..b4fb1b1 100644 --- a/src/platform.h +++ b/src/platform.h @@ -3,7 +3,12 @@ #include <pthread.h> -int nr_cpus(); +#ifndef PSEMNAMLEN /* defined in macOS, but not in Linux */ +#define PSEMNAMLEN 31 +#endif + +int nr_cpus(void); int set_thread_affinity(pthread_t tid, int core); +int get_random(int max); #endif /* _PLATFORM_H_ */ |