]> Nishi Git Mirror - sp.git/commitdiff
コンフィグファイルの追加 (#26)
author諏訪子 <suwako@076.moe>
Mon, 4 Nov 2024 10:28:20 +0000 (19:28 +0900)
committer諏訪子 <suwako@076.moe>
Mon, 4 Nov 2024 10:28:20 +0000 (19:28 +0900)
15 files changed:
Makefile
main.c
sp.conf [new file with mode: 0644]
src/addpass.c
src/chkpass.c
src/common.c
src/common.h
src/delpass.c
src/genpass.c
src/initpass.c
src/listpass.c
src/otppass.c
src/showpass.c
src/vulnpass.c
src/yankpass.c

index 7490165636f51aff51685b3e70893392db98109b..5845c4f8583922195b32b6b799a81caebe4b1959 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,31 @@
 UNAME_S != uname -s
 UNAME_M != uname -m
 OS = ${UNAME_S}
+ARCH = ${UNAME_M}
+FAMILY = "unknown"
 
 .if ${UNAME_S} == "OpenBSD"
 OS = openbsd
+FAMILY = bsd
 .elif ${UNAME_S} == "NetBSD"
 OS = netbsd
+FAMILY = bsd
 .elif ${UNAME_S} == "FreeBSD"
 OS = freebsd
+FAMILY = bsd
 .elif ${UNAME_S} == "Linux"
 OS = linux
+FAMILY = linux
+.elif ${UNAME_S} == "Haiku"
+OS = haiku
+FAMILY = beos
+.elif ${UNAME_S} == "Darwin"
+OS = macos
+FAMILY = darwin
 .endif
 
 .if ${UNAME_M} == "x86_64"
-UNAME_M = amd64
+ARCH = amd64
 .endif
 
 NAME != cat main.c | grep "const char \*sofname" | awk '{print $$5}' | \
@@ -21,21 +33,21 @@ NAME != cat main.c | grep "const char \*sofname" | awk '{print $$5}' | \
 VERSION != cat main.c | grep "const char \*version" | awk '{print $$5}' | \
        sed "s/\"//g" | sed "s/;//"
 PREFIX = /usr/local
-.if ${UNAME_S} == "Haiku"
+.if ${OS} == "haiku"
 PREFIX = /boot/home/config/non-packaged
-.elif ${UNAME_S} == "Linux"
+.elif ${OS} == "linux"
 PREFIX = /usr
 .endif
 
 MANPREFIX = ${PREFIX}/share/man
-.if ${UNAME_S} == "OpenBSD"
+.if ${OS} == "openbsd"
 MANPREFIX = ${PREFIX}/man
-.elif ${UNAME_S} == "Haiku"
+.elif ${OS} == "haiku"
 MANPREFIX = ${PREFIX}/documentation/man
 .endif
 
 DATAPREFIX = ${PREFIX}/share
-.if ${UNAME_S} == "Haiku"
+.if ${OS} == "haiku"
 DATAPREFIX = ${PREFIX}/data
 .endif
 
@@ -43,26 +55,41 @@ CC = cc
 FILES = main.c src/*.c
 
 CFLAGS = -Wall -Wextra -I/usr/include -L/usr/lib
-.if ${UNAME_S} == "NetBSD"
-CFLAGS += -I/usr/pkg/include -L/usr/pkg/lib -I/usr/local/include -L/usr/local/lib
-.elif ${UNAME_S} == "OpenBSD" || ${UNAME_S} == "FreeBSD"
+.if ${OS} == "haiku"
+CFLAGS += -I/boot/system/develop/headers -L/boot/system/develop/lib
+.else
+CFLAGS += -I/usr/include -L/usr/lib
+.endif
+
+.if ${OS} == "freebsd" || ${OS} == "openbsd" || ${OS} == "netbsd" || ${OS} == "dragonfly"
 CFLAGS += -I/usr/local/include -L/usr/local/lib
 .endif
+.if ${OS} == "netbsd"
+CFLAGS += -I/usr/pkg/include -L/usr/pkg/lib
+.endif
 
+.if ${OS} == "haiku"
+LDFLAGS = -lnetwork -lgpgme -lcrypto
+.else
 LDFLAGS = -lgpgme -lcrypto
+.endif
 
-.if ${UNAME_S} == "OpenBSD"
+.if ${OS} == "openbsd"
 LDFLAGS += -lc -lassuan -lgpg-error -lintl -liconv
-.elif ${UNAME_S} == "FreeBSD"
+.elif ${OS} == "freebsd"
 LDFLAGS += -lc -lassuan -lgpg-error -lthr -lintl
-.elif ${UNAME_S} == "NetBSD"
+.elif ${OS} == "netbsd"
 LDFLAGS += -lcrypt -lc -lassuan -lgpg-error -lintl
-.elif ${UNAME_S} == "Linux"
+.elif ${OS} == "linux"
 LDFLAGS += -lc -lassuan -lgpg-error
 .endif
 
 all:
+.if ${OS} == "haiku" || ${OS} == "macos"
+       ${CC} -O3 ${CFLAGS} -o ${NAME} ${FILES} ${LDFLAGS}
+.else
        ${CC} -O3 ${CFLAGS} -o ${NAME} ${FILES} -static ${LDFLAGS}
+.endif
        strip ${NAME}
 
 debug:
@@ -86,10 +113,10 @@ man:
                release/man/${VERSION}/${NAME}-jp.1
 
 release:
-       mkdir -p release/bin/${VERSION}/${OS}/${UNAME_M}
-       ${CC} -O3 ${CFLAGS} -o release/bin/${VERSION}/${OS}/${UNAME_M}/${NAME} ${FILES} \
+       mkdir -p release/bin/${VERSION}/${OS}/${ARCH}
+       ${CC} -O3 ${CFLAGS} -o release/bin/${VERSION}/${OS}/${ARCH}/${NAME} ${FILES} \
                -static ${LDFLAGS}
-       strip release/bin/${VERSION}/${OS}/${UNAME_M}/${NAME}
+       strip release/bin/${VERSION}/${OS}/${ARCH}/${NAME}
 
 install:
        mkdir -p ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANPREFIX}/man1
diff --git a/main.c b/main.c
index 5bc9d07788577afec56483c930b1a8992231ae48..374c7ab61df65b2356d2a7360a1186873f40cd20 100644 (file)
--- a/main.c
+++ b/main.c
@@ -24,8 +24,6 @@ void usage() {
 }
 
 char *getfullpath(char *arg) {
-  char *lang = getlang();
-
   char *basedir = getbasedir(1);
   size_t fullPathLen;
   char *fullPath;
@@ -50,8 +48,6 @@ char *getfullpath(char *arg) {
 }
 
 void editpass(char *file) {
-  char *lang = getlang();
-
 #if defined(__HAIKU__)
   const char *tmpfile = "/boot/system/cache/sp-tmp.gpg";
 #else
@@ -82,6 +78,9 @@ int main(int argc, char *argv[]) {
     return 0;
   }
 
+  Config *cf = getconfig();
+  lang = getlang(cf);
+
   if (strcmp(argv[1], "-g") == 0) {
     if (argc > 4) {
       usage();
@@ -105,7 +104,10 @@ int main(int argc, char *argv[]) {
       if (pass == NULL) return -1;
       printf("%s\n", pass);
     }
-    else if (strcmp(argv[1], "-y") == 0) yankpass(argv[2], 45);
+    else if (strcmp(argv[1], "-y") == 0) {
+      int timeout = (copyTimeFromCnf == 1 ? cnf->passtimeout : 45);
+      yankpass(argv[2], timeout);
+    }
     else if (strcmp(argv[1], "-a") == 0) addpass(argv[2]);
     else if (strcmp(argv[1], "-d") == 0) delpass(argv[2], 0);
     else if (strcmp(argv[1], "-e") == 0) {
@@ -118,7 +120,8 @@ int main(int argc, char *argv[]) {
     } else if (strcmp(argv[1], "-O") == 0) {
       char *fullPath = getfullpath(argv[2]);
       if (fullPath == NULL) return -1;
-      otppass(fullPath, 1, 30);
+      int timeout = (otpTimeFromCnf == 1 ? cnf->otptimeout : 30);
+      otppass(fullPath, 1, timeout);
       free(fullPath);
     } else if (strcmp(argv[1], "-f") == 0) {
       char *fullPath = getfullpath(NULL);
@@ -137,14 +140,18 @@ int main(int argc, char *argv[]) {
   } else if (argc == 4) {
     if (strcmp(argv[1], "-y") == 0) {
       int i;
-      if (sscanf(argv[3], "%d", &i) == 0) yankpass(argv[2], 45);
-      else yankpass(argv[2], atoi(argv[3]));
+      if (sscanf(argv[3], "%d", &i) == 0)
+        yankpass(argv[2], (copyTimeFromCnf == 1 ? cnf->passtimeout : 45));
+      else
+        yankpass(argv[2], (copyTimeFromCnf == 1 ? cnf->passtimeout : atoi(argv[3])));
     } else if (strcmp(argv[1], "-O") == 0) {
       char *fullPath = getfullpath(argv[2]);
       if (fullPath == NULL) return -1;
       int i;
-      if (sscanf(argv[3], "%d", &i) == 0) otppass(fullPath, 1, 30);
-      else otppass(fullPath, 1, atoi(argv[3]));
+      if (sscanf(argv[3], "%d", &i) == 0)
+        otppass(fullPath, 1, (otpTimeFromCnf == 1 ? cnf->otptimeout : 30));
+      else
+        otppass(fullPath, 1, (otpTimeFromCnf == 1 ? cnf->otptimeout : atoi(argv[3])));
       free(fullPath);
     }
   } else if (argc == 2) {
diff --git a/sp.conf b/sp.conf
new file mode 100644 (file)
index 0000000..9819f06
--- /dev/null
+++ b/sp.conf
@@ -0,0 +1,10 @@
+cloud sync username = suwako
+cloud sync password = ○○
+cloud sync instance = sp.076.moe
+cloud sync enabled = false
+simpas show password = false
+simpas theme = dark
+simpas language = ja
+sp timeout password = 45
+sp timeout otp = 30
+sp language = ja
index 49982756faebcdb75373e0b2bfd75ec9eaaa7729..6efe21966105bcfa2d1aa81cf4018df0b82458ef 100644 (file)
@@ -37,8 +37,6 @@ void getpasswd(char *prompt, char *pw, size_t pwlen) {
 }
 
 int addpass(char *file) {
-  char *lang = getlang();
-
   // パスを準備
   char *basedir = getbasedir(1);
   char *ext = ".gpg";
index cc5f93f987528f584f79db09d45fae57b57cad30..a46be24b41fccaf6999a1e789d0ea69d96ddd8f4 100644 (file)
@@ -107,8 +107,6 @@ void chkDupPass(const char *path, const char *pass, char *lang) {
 }
 
 void chkpass(const char *dpath, const char *mode) {
-  char *lang = getlang();
-
   if (strncmp(mode, "all", 3) != 0 && strncmp(mode, "length", 6) != 0 &&
       strncmp(mode, "strength", 8) != 0 && strncmp(mode, "duplicate", 9) != 0) {
     if (strncmp(lang, "en", 2) == 0)
index 4253a9d61cfe5d414444b4dcc514d3638bd9372f..7fe67c3299692c344dd63f26a42a748a57a0a7ac 100644 (file)
 #include <string.h>
 #include <dirent.h>
 #include <sys/stat.h>
+#include <unistd.h>
 
 #define MAXFINDLEN 1024
+char *lang = "ja";
+int langFromCnf;
+int copyTimeFromCnf;
+int otpTimeFromCnf;
+Config *cnf;
+
+Config *getconfig() {
+  const char *configpath = getconfigpath();
+  if (!configpath) {
+    return NULL;
+  }
 
-char *getbasedir(int trailing) {
-  char *lang = getlang();
+  cnf = malloc(sizeof(Config));
+  if (!cnf) return NULL;
+
+  strncpy(cnf->syncname, "", sizeof(cnf->syncname) - 1);
+  strncpy(cnf->syncpass, "", sizeof(cnf->syncpass) - 1);
+  strncpy(cnf->syncinstance, "", sizeof(cnf->syncinstance) - 1);
+  cnf->syncenable = 0;
+  cnf->passtimeout = 45;
+  cnf->otptimeout = 30;
+  strncpy(cnf->language, "ja", sizeof(cnf->language) - 1);
+
+  cnf->syncname[sizeof(cnf->syncname) - 1] = '\0';
+  cnf->syncpass[sizeof(cnf->syncpass) - 1] = '\0';
+  cnf->syncinstance[sizeof(cnf->syncinstance) - 1] = '\0';
+  cnf->language[sizeof(cnf->language) - 1] = '\0';
+
+  FILE *fp = fopen(configpath, "r");
+  if (!fp) {
+    free(cnf);
+    return NULL;
+  }
+
+  char line[128];
+  while (fgets(line, sizeof(line), fp)) {
+    if (line[0] == '#' || line[0] == '\n') continue;
+    const char *p;
+
+    if ((p = strstr(line, "cloud sync username = ")) != NULL) {
+      sscanf(p + strlen("cloud sync username = "), "%511s", cnf->syncname);
+    }
+
+    if ((p = strstr(line, "cloud sync password = ")) != NULL) {
+      sscanf(p + strlen("cloud sync password = "), "%511s", cnf->syncpass);
+    }
+
+    if ((p = strstr(line, "cloud sync instance = ")) != NULL) {
+      sscanf(p + strlen("cloud sync instance = "), "%511s", cnf->syncinstance);
+    }
+
+    if ((p = strstr(line, "cloud sync enabled = true")) != NULL) {
+      cnf->syncenable = 1;
+    }
+
+    if ((p = strstr(line, "sp timeout password = ")) != NULL) {
+      sscanf(p + strlen("sp timeout password = "), "%d", &cnf->passtimeout);
+      if (cnf->passtimeout != 45) copyTimeFromCnf = 1;
+    }
+
+    if ((p = strstr(line, "sp timeout otp = ")) != NULL) {
+      sscanf(p + strlen("sp timeout otp = "), "%d", &cnf->otptimeout);
+      if (cnf->otptimeout != 30) otpTimeFromCnf = 1;
+    }
+
+    if ((p = strstr(line, "sp language = ")) != NULL) {
+      sscanf(p + strlen("sp language = "), "%2s", cnf->language);
+      if (strncmp(cnf->language, "ja", 2) != 0) langFromCnf = 1;
+    }
+  }
+
+  fclose(fp);
+
+  return cnf;
+}
+
+const char *getconfigpath() {
+#if defined(_WIN32)
+  const char *homedir = getenv("HOME");
+
+  const char *localdata = "\\AppData\\Local\\076\\sp\\sp.conf";
+  const char *roamdata = "\\AppData\\Roaming\\076\\sp\\sp.conf";
+  const char *sysdata = "C:\\ProgramData\\sp\\sp.conf";
+
+  if (homedir) {
+    static char lpath[512];
+    static char rpath[512];
+
+    snprintf(lpath, sizeof(lpath), "%s%s", homedir, localdata);
+    if (access(lpath, F_OK) != -1) {
+      return lpath;
+    }
 
+    snprintf(rpath, sizeof(rpath), "%s%s", homedir, roamdata);
+    if (access(rpath, F_OK) != -1) {
+      return rpath;
+    }
+  }
+
+  if (access(syspath, F_OK) != -1) {
+    return syspath;
+  }
+#elif defined(__HAIKU__)
+  const char *cnfpath = "/boot/home/config/settings/sp/sp.conf";
+  if (access(cnfpath, F_OK) != -1) {
+    return cnfpath;
+  }
+#else
+  const char *homedir = getenv("HOME");
+
+  const char *userpath = "/.config/sp.conf";
+  const char *wrongpath = "/.sp.conf";
+  const char *netbsdpath = "/usr/pkg/etc/sp.conf";
+  const char *freebsdpath = "/usr/local/etc/sp.conf";
+  const char *syspath = "/etc/sp.conf";
+
+  static char correctuser[512];
+  static char incorrectuser[512];
+
+  if (homedir) {
+    snprintf(correctuser, sizeof(correctuser), "%s%s", homedir, userpath);
+    if (access(correctuser, F_OK) != -1) {
+      return correctuser;
+    }
+
+    snprintf(incorrectuser, sizeof(incorrectuser), "%s%s", homedir, wrongpath);
+    if (access(incorrectuser, F_OK) != -1) {
+      return incorrectuser;
+    }
+  }
+
+  if (access(netbsdpath, F_OK) != -1) {
+    return netbsdpath;
+  }
+
+  if (access(freebsdpath, F_OK) != -1) {
+    return freebsdpath;
+  }
+
+  if (access(syspath, F_OK) != -1) {
+    return syspath;
+  }
+#endif
+
+  return NULL;
+}
+
+char *getbasedir(int trailing) {
   char *homedir = getenv("HOME");
   if (homedir == NULL) {
     if (strncmp(lang, "en", 2) == 0)
@@ -45,13 +190,13 @@ char *getbasedir(int trailing) {
   return res;
 }
 
-char *getlang() {
-  char *lang = NULL;
-
-  lang = getenv("SP_LANG");
-  if (lang == NULL) lang = "ja";
+char *getlang(Config *cf) {
+  if (langFromCnf == 1) {
+    return cf->language;
+  }
 
-  return lang;
+  char *env = getenv("SP_LANG");
+  return (env ? env : "ja");
 }
 
 int mkdir_r(const char *path, mode_t mode) {
@@ -134,8 +279,6 @@ void rmext(char *filename) {
 
 void scanDir(const char *dpath, const char *rpath, List *fpaths,
     List *fullpaths, List *dispaths) {
-  char *lang = getlang();
-
   DIR *dir = opendir(dpath);
   if (!dir) {
     if (strncmp(lang, "en", 2) == 0)
@@ -263,7 +406,7 @@ void handle_sigint(int sig) {
     system("echo -n \"\" | xclip -selection clipboard");
   }
 
-  if (strncmp(getlang(), "en", 2) == 0) {
+  if (strncmp(lang, "en", 2) == 0) {
     printf("\nClipboard cleared and program aborted.\n");
   } else {
     printf("\nクリップボードをクリアし、プログラムが中止されました。\n");
index 2e06fd5d50818aa29760b0057aa39ba3f01451ee..557f1c79cbbcdfe83376b099396a8113a97b54a1 100644 (file)
@@ -22,14 +22,32 @@ typedef struct {
   size_t size;
 } List;
 
+typedef struct {
+  char syncname[512];
+  char syncpass[512];
+  char syncinstance[1024];
+  int syncenable;
+  int passtimeout;
+  int otptimeout;
+  char language[3];
+} Config;
+
+Config *getconfig();
+const char *getconfigpath();
 char *getbasedir(int trailing);
-char *getlang();
+char *getlang(Config *cf);
 int mkdir_r(const char *path, mode_t mode);
 int tmpcopy(const char *inpath, const char *outpath);
 void scanDir(const char *dpath, const char *rpath, List *fpaths,
     List *fullpaths, List *dispaths);
 void handle_sigint(int sig);
 
+extern char *lang;
+extern int langFromCnf;
+extern int copyTimeFromCnf;
+extern int otpTimeFromCnf;
+extern Config *cnf;
+
 // C言語のvector
 void initList(List *list);
 void addElement(List *list, const char *data);
index 91f5d69259dfe1e6c4d02d267c54c39dad498d44..727867919e6adb5b9fc9577a6cd6152d01744e36 100644 (file)
@@ -58,8 +58,6 @@ void freetokens(char **tokens, int numtokens) {
 }
 
 int delpass(char *file, int force) {
-  char *lang = getlang();
-
   // パスを準備
   char pwfile[512];
   char *basedir = getbasedir(1);
index bbd4cabfd13f366aa90c749d6793fba01f330396..386bce6c0199d02cec5ed3adc50543495f9ff005 100644 (file)
@@ -2,8 +2,6 @@
 #include "genpass.h"
 
 void genpass(int count, bool issecure) {
-  char *lang = getlang();
-
   const char *charset_risky =
     "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
   const char *charset_secure =
index c73cfb7901404aa3c3f475108139b7e8e494d735..d57cffd25649eaef8e3033887b6d1221aa62ad90 100644 (file)
@@ -2,8 +2,6 @@
 #include "initpass.h"
 
 void initpass(char *gpgid) {
-  char *lang = getlang();
-
   char *basedir = getbasedir(1);
 
   if (mkdir_r(basedir, 0755) != 0 && errno != EEXIST) {
index cc2e08f763d3386a5ecef6b50a37692e9261f12e..73afd3376e142a315aae31eec56f91247d9b8f7b 100644 (file)
@@ -4,8 +4,6 @@
 #include "listpass.h"
 
 void listpass(char *basePath, int level) {
-  char *lang = getlang();
-
   struct dirent *entry;
   DIR* dir = opendir(basePath);
   if (!dir) {
index 1124fc1c7b2912bf1098beebc465733db04cb97c..514a4efa0168157b0d471e8460359ba39849d2c1 100644 (file)
@@ -13,8 +13,6 @@
 #include "otppass.h"
 
 unsigned char *extract_secret(const char *otpauth_url, size_t *decoded_len) {
-  char *lang = getlang();
-
   const char *secret_start = strstr(otpauth_url, "secret=");
   if (!secret_start) {
     if (strncmp(lang, "en", 2) == 0)
@@ -111,8 +109,6 @@ uint32_t generate_totp(const char *secret, uint64_t counter) {
 
 void otppass(char *file, int isCopy, int copyTimeout) {
   if (isCopy == 1 && copyTimeout > 300) copyTimeout = 300;
-  char *lang = getlang();
-
   int isGay = (getenv("WAYLAND_DISPLAY") != NULL);
 
   // Xセッションではない場合(例えば、SSH、TTY等)、otppass()を実行して
index 89a4173e639f30b5cf955550e33653c00710f4d4..2da48c9e03f6bfdba4bafdb91043c930c6fc589e 100644 (file)
@@ -18,8 +18,6 @@ void clean_up(
 }
 
 const char *showpass(char *file) {
-  char *lang = getlang();
-
   gpgme_ctx_t ctx;
   gpgme_error_t err;
   gpgme_data_t in = NULL, out = NULL;
index 0478092be792b9cfea0dff2e5366d80ce2243dc2..708f911c092c5750346cce6d72e5cd6ea033aafa 100644 (file)
@@ -17,8 +17,6 @@ List vulnFullpaths;
 List vulnDispaths;
 
 void vulnpass(const char *dpath) {
-  char *lang = getlang();
-
   // pwndサーバに接続
   int sock;
   struct sockaddr_in srv;
index c1b54353d9d3367245b4d848809b76e66e9c50bc..74ef77e44694c0b6a35f5f8bb3e0265ed1e49b29 100644 (file)
@@ -7,8 +7,6 @@
 
 void yankpass(char *file, int copyTimeout) {
   if (copyTimeout > 300) copyTimeout = 300;
-  char *lang = getlang();
-
   int isGay = (getenv("WAYLAND_DISPLAY") != NULL);
 
   // Xセッションではない場合(例えば、SSH、TTY等)、showpass()を実行して