-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mkdir -p $runstatedir at run time, not install time (round 2) #1235
Changes from all commits
3db000a
40eaf4e
af6a67f
2eb2f60
c6ce038
3873f98
7b7b303
a9aed20
eca3834
2e2e5d1
d96d583
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/* | ||
* Copyright (C) NGINX, Inc. | ||
* Copyright 2024, Alejandro Colomar <alx@kernel.org> | ||
*/ | ||
|
||
#include <nxt_main.h> | ||
|
@@ -9,35 +10,31 @@ static nxt_int_t nxt_fs_mkdir(const u_char *dir, mode_t mode); | |
|
||
|
||
nxt_int_t | ||
nxt_fs_mkdir_all(const u_char *dir, mode_t mode) | ||
nxt_fs_mkdir_p(const u_char *dir, mode_t mode) | ||
{ | ||
char *start, *end, *dst; | ||
size_t dirlen; | ||
char path[PATH_MAX]; | ||
char *start, *end, *dst; | ||
size_t dirlen; | ||
nxt_int_t ret; | ||
char path[PATH_MAX]; | ||
Comment on lines
-14
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Personally I'm not fussed about having ( I could also quite happily live without the alignment, and the multiple variable declaration on a single line for that matter, it would make changes like this simpler) |
||
|
||
dirlen = nxt_strlen(dir); | ||
|
||
nxt_assert(dirlen < PATH_MAX && dirlen > 1 && dir[0] == '/'); | ||
nxt_assert(dirlen < PATH_MAX && dirlen > 0); | ||
|
||
dst = path; | ||
start = (char *) dir; | ||
|
||
while (*start != '\0') { | ||
if (*start == '/') { | ||
*dst++ = *start++; | ||
} | ||
|
||
end = strchr(start, '/'); | ||
end = strchr(start + 1, '/'); | ||
if (end == NULL) { | ||
end = ((char *)dir + dirlen); | ||
} | ||
|
||
dst = nxt_cpymem(dst, start, end - start); | ||
*dst = '\0'; | ||
|
||
if (nxt_slow_path(nxt_fs_mkdir((u_char *) path, mode) != NXT_OK | ||
&& nxt_errno != EEXIST)) | ||
{ | ||
ret = nxt_fs_mkdir((u_char *) path, mode); | ||
if (nxt_slow_path(ret != NXT_OK && nxt_errno != EEXIST)) { | ||
return NXT_ERROR; | ||
} | ||
|
||
|
@@ -49,7 +46,7 @@ nxt_fs_mkdir_all(const u_char *dir, mode_t mode) | |
|
||
|
||
nxt_int_t | ||
nxt_fs_mkdir_parent(const u_char *path, mode_t mode) | ||
nxt_fs_mkdir_p_dirname(const u_char *path, mode_t mode) | ||
{ | ||
char *ptr, *dir; | ||
nxt_int_t ret; | ||
|
@@ -62,11 +59,14 @@ nxt_fs_mkdir_parent(const u_char *path, mode_t mode) | |
ret = NXT_OK; | ||
|
||
ptr = strrchr(dir, '/'); | ||
if (nxt_fast_path(ptr != NULL)) { | ||
*ptr = '\0'; | ||
ret = nxt_fs_mkdir((const u_char *) dir, mode); | ||
if (ptr == dir || nxt_slow_path(ptr == NULL)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One may legitimatelly want to We probably agree that they should be punished by such an offense, but misbehaving, or even prohibiting, is probably not a fair punishment. |
||
goto out_free; | ||
} | ||
|
||
*ptr = '\0'; | ||
ret = nxt_fs_mkdir_p((const u_char *) dir, mode); | ||
|
||
out_free: | ||
nxt_free(dir); | ||
|
||
return ret; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Heh, I'm not sure the below change constitutes a significant contribution...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I could move it to the next commit, but that one was already better than the previous ones, which are trivial refactors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since that one already accumulates several changes to that page, I guess it's fair.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Although, thanks to all the refactors, the next commit is also just 2 lines in that file, and one is a rename :D)