mirror of
https://github.com/samba-team/samba.git
synced 2025-03-27 22:50:26 +03:00
Use the new directory_create_or_exist_strict() function.
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
6039388fc1
commit
1aa0503401
@ -133,7 +133,7 @@ int create_named_pipe_socket(const char *pipe_name)
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!directory_create_or_exist(np_dir, geteuid(), 0700)) {
|
||||
if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) {
|
||||
DEBUG(0, ("Failed to create pipe directory %s - %s\n",
|
||||
np_dir, strerror(errno)));
|
||||
goto out;
|
||||
|
@ -1468,7 +1468,7 @@ extern void build_options(bool screen);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!directory_create_or_exist(np_dir, geteuid(), 0700)) {
|
||||
if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) {
|
||||
DEBUG(0, ("Failed to create pipe directory %s - %s\n",
|
||||
np_dir, strerror(errno)));
|
||||
return -1;
|
||||
|
@ -604,7 +604,7 @@ struct imessaging_context *imessaging_init(TALLOC_CTX *mem_ctx,
|
||||
|
||||
msg->base_path = lpcfg_imessaging_path(msg, lp_ctx);
|
||||
|
||||
ok = directory_create_or_exist(msg->base_path, geteuid(), 0700);
|
||||
ok = directory_create_or_exist_strict(msg->base_path, geteuid(), 0700);
|
||||
if (!ok) {
|
||||
talloc_free(msg);
|
||||
return NULL;
|
||||
|
@ -498,7 +498,7 @@ static void ntp_signd_task_init(struct task_server *task)
|
||||
|
||||
const char *address;
|
||||
|
||||
if (!directory_create_or_exist(lpcfg_ntp_signd_socket_directory(task->lp_ctx), geteuid(), 0750)) {
|
||||
if (!directory_create_or_exist_strict(lpcfg_ntp_signd_socket_directory(task->lp_ctx), geteuid(), 0750)) {
|
||||
char *error = talloc_asprintf(task, "Cannot create NTP signd pipe directory: %s",
|
||||
lpcfg_ntp_signd_socket_directory(task->lp_ctx));
|
||||
task_server_terminate(task,
|
||||
|
@ -212,7 +212,7 @@ NTSTATUS tstream_setup_named_pipe(TALLOC_CTX *mem_ctx,
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (!directory_create_or_exist(dirname, geteuid(), 0700)) {
|
||||
if (!directory_create_or_exist_strict(dirname, geteuid(), 0700)) {
|
||||
status = map_nt_error_from_unix_common(errno);
|
||||
DEBUG(0,(__location__ ": Failed to create stream pipe directory '%s' - %s\n",
|
||||
dirname, nt_errstr(status)));
|
||||
|
@ -199,6 +199,7 @@ static void winbind_task_init(struct task_server *task)
|
||||
struct wbsrv_listen_socket *listen_socket;
|
||||
char *errstring;
|
||||
struct dom_sid *primary_sid;
|
||||
bool ok;
|
||||
|
||||
task_server_set_title(task, "task[winbind]");
|
||||
|
||||
@ -213,14 +214,18 @@ static void winbind_task_init(struct task_server *task)
|
||||
}
|
||||
|
||||
/* Make sure the directory for the Samba3 socket exists, and is of the correct permissions */
|
||||
if (!directory_create_or_exist(lpcfg_winbindd_socket_directory(task->lp_ctx), geteuid(), 0755)) {
|
||||
ok = directory_create_or_exist_strict(lpcfg_winbindd_socket_directory(task->lp_ctx),
|
||||
geteuid(), 0755);
|
||||
if (!ok) {
|
||||
task_server_terminate(task,
|
||||
"Cannot create winbindd pipe directory", true);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Make sure the directory for the Samba3 socket exists, and is of the correct permissions */
|
||||
if (!directory_create_or_exist(lpcfg_winbindd_privileged_socket_directory(task->lp_ctx), geteuid(), 0750)) {
|
||||
ok = directory_create_or_exist_strict(lpcfg_winbindd_privileged_socket_directory(task->lp_ctx),
|
||||
geteuid(), 0750);
|
||||
if (!ok) {
|
||||
task_server_terminate(task,
|
||||
"Cannot create winbindd privileged pipe directory", true);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user