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}' | \
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
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:
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
}
char *getfullpath(char *arg) {
- char *lang = getlang();
-
char *basedir = getbasedir(1);
size_t fullPathLen;
char *fullPath;
}
void editpass(char *file) {
- char *lang = getlang();
-
#if defined(__HAIKU__)
const char *tmpfile = "/boot/system/cache/sp-tmp.gpg";
#else
return 0;
}
+ Config *cf = getconfig();
+ lang = getlang(cf);
+
if (strcmp(argv[1], "-g") == 0) {
if (argc > 4) {
usage();
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) {
} 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);
} 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) {
--- /dev/null
+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
}
int addpass(char *file) {
- char *lang = getlang();
-
// パスを準備
char *basedir = getbasedir(1);
char *ext = ".gpg";
}
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)
#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)
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) {
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)
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");
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);
}
int delpass(char *file, int force) {
- char *lang = getlang();
-
// パスを準備
char pwfile[512];
char *basedir = getbasedir(1);
#include "genpass.h"
void genpass(int count, bool issecure) {
- char *lang = getlang();
-
const char *charset_risky =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
const char *charset_secure =
#include "initpass.h"
void initpass(char *gpgid) {
- char *lang = getlang();
-
char *basedir = getbasedir(1);
if (mkdir_r(basedir, 0755) != 0 && errno != EEXIST) {
#include "listpass.h"
void listpass(char *basePath, int level) {
- char *lang = getlang();
-
struct dirent *entry;
DIR* dir = opendir(basePath);
if (!dir) {
#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)
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()を実行して
}
const char *showpass(char *file) {
- char *lang = getlang();
-
gpgme_ctx_t ctx;
gpgme_error_t err;
gpgme_data_t in = NULL, out = NULL;
List vulnDispaths;
void vulnpass(const char *dpath) {
- char *lang = getlang();
-
// pwndサーバに接続
int sock;
struct sockaddr_in srv;
void yankpass(char *file, int copyTimeout) {
if (copyTimeout > 300) copyTimeout = 300;
- char *lang = getlang();
-
int isGay = (getenv("WAYLAND_DISPLAY") != NULL);
// Xセッションではない場合(例えば、SSH、TTY等)、showpass()を実行して