Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15318480
D11700.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11700.diff
View Options
diff --git a/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php b/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
--- a/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
+++ b/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
@@ -115,7 +115,16 @@
}
}
- list($raw_public_key) = execx('ssh-keygen -y -f %s', $private_key_path);
+ // NOTE: We're writing the private key here so we can change permissions
+ // on it without causing weird side effects to the file specified with
+ // the `--private-key` flag. The file needs to have restrictive permissions
+ // before `ssh-keygen` will willingly operate on it.
+ $tmp_private = new TempFile();
+ Filesystem::changePermissions($tmp_private, 0600);
+ execx('chown %s %s', $phd_user, $tmp_private);
+ Filesystem::writeFile($tmp_private, $raw_private_key);
+
+ list($raw_public_key) = execx('ssh-keygen -y -f %s', $tmp_private);
$key_object = PhabricatorAuthSSHPublicKey::newFromRawKey($raw_public_key);
@@ -173,11 +182,6 @@
$console->writeOut(
"%s\n",
pht('Installing private key...'));
-
- $tmp_private = new TempFile();
- Filesystem::changePermissions($tmp_private, 0600);
- execx('chown %s %s', $phd_user, $tmp_private);
- Filesystem::writeFile($tmp_private, $raw_private_key);
execx('mv -f %s %s', $tmp_private, $stored_private_path);
$raw_device = $device_name;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 7, 8:27 PM (4 w, 13 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7348029
Default Alt Text
D11700.diff (1 KB)
Attached To
Mode
D11700: Correct private key permissions before extracting public key in bin/almanac register
Attached
Detach File
Event Timeline
Log In to Comment