aboutsummaryrefslogtreecommitdiff
path: root/pass_util.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-31 00:36:01 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-31 00:46:01 +0530
commit84f1e50cb1a959f3a835b8ba265159cc6e75635a (patch)
tree9663dd6bfa60c16977df894b48a3d9dc4419239b /pass_util.c
parent50b6b69fcfbe492d9bac3ed1c9d0cd7cc400a5de (diff)
pass/rm: init
Diffstat (limited to 'pass_util.c')
-rw-r--r--pass_util.c30
1 files changed, 28 insertions, 2 deletions
diff --git a/pass_util.c b/pass_util.c
index 3ce3784..de8308a 100644
--- a/pass_util.c
+++ b/pass_util.c
@@ -3,7 +3,6 @@
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
-#include <fcntl.h>
#include <linux/limits.h>
#include <libgen.h>
#include <termios.h>
@@ -151,8 +150,9 @@ int pass_add(const char *path, const char *pass, size_t n)
if (r)
err_die(1, "invalid key , try gpg --list-keys");
+ // TODO: guard against .*\.gpg\.gpg[/$]
r = snprintf(pass_path, sizeof(pass_path), "%s/%s.gpg", pass_dir, path);
- if (r > (int) sizeof(gpg_id_path))
+ if (r > (int) sizeof(pass_path))
err_die(1, "path exceeded PATH_MAX");
rc = strdup(pass_path);
@@ -174,3 +174,29 @@ int pass_add(const char *path, const char *pass, size_t n)
fclose(out_stream);
return r;
}
+
+int pass_rm(const char *path)
+{
+
+ int r = 0;
+ char gpg_path[PATH_MAX], abs_path[PATH_MAX];
+
+ r = set_pass_dir();
+ if (r)
+ err_die(1, "PASSWORD_STORE_DIR not set");
+
+ r = snprintf(gpg_path, sizeof(gpg_path), "%s.gpg", path);
+ if (r > (int) sizeof(gpg_path))
+ err_die(1, "path exceeded PATH_MAX");
+
+ r = snprintf(abs_path, sizeof(gpg_path), "%s/%s", pass_dir, gpg_path);
+ if (r > (int) sizeof(abs_path))
+ err_die(1, "path exceeded PATH_MAX");
+
+ // TODO: guard against .*\.gpg\.gpg[/$]
+ r = unlink(abs_path);
+ if (r)
+ err_die(1, "%s %s", abs_path, strerror(errno));
+
+ return r_rmdir(pass_dir, dirname(gpg_path));
+}