summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2016-09-17 00:21:04 -0400
committerJune McEnroe <june@causal.agency>2016-09-17 00:21:04 -0400
commit341df3e10824e75f19f3c80ac59ec4480c2983da (patch)
treec4218b308121d55c33c245091c24ad9df7a66937
parentExecute Homebrew SSH for tux iTerm profile (diff)
downloadsrc-341df3e10824e75f19f3c80ac59ec4480c2983da.tar.gz
src-341df3e10824e75f19f3c80ac59ec4480c2983da.zip
Add initial pbd implementation
Error handling in C is tedious.
Diffstat (limited to '')
-rwxr-xr-x.bin/pbd.c71
-rwxr-xr-xinstall.sh1
2 files changed, 72 insertions, 0 deletions
diff --git a/.bin/pbd.c b/.bin/pbd.c
new file mode 100755
index 00000000..713800d4
--- /dev/null
+++ b/.bin/pbd.c
@@ -0,0 +1,71 @@
+#if 0
+exec clang -Weverything $@ -o $(dirname $0)/pbd $0
+#endif
+
+#include <arpa/inet.h>
+#include <err.h>
+#include <netinet/in.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/socket.h>
+#include <sysexits.h>
+#include <unistd.h>
+
+int main() {
+    int server = socket(PF_INET, SOCK_STREAM, 0);
+    if (server < 0) err(EX_OSERR, "socket");
+
+    struct sockaddr_in addr = {
+        .sin_family = AF_INET,
+        .sin_port = htons(7062),
+        .sin_addr = { .s_addr = htonl(0x7f000001) },
+    };
+
+    if (bind(server, (struct sockaddr *) &addr, sizeof(addr)) < 0)
+        err(EX_OSERR, "bind");
+
+    if (listen(server, 1) < 0)
+        err(EX_OSERR, "listen");
+
+    for (;;) {
+        int client = accept(server, NULL, NULL);
+        if (client < 0) err(EX_OSERR, "accept");
+
+        pid_t pid_paste = fork();
+        if (pid_paste < 0) err(EX_OSERR, "fork");
+
+        if (pid_paste) {
+            if (waitpid(pid_paste, NULL, 0) < 0)
+                warn("waitpid");
+            // TODO: Check child status.
+        } else {
+            if (dup2(client, STDOUT_FILENO) < 0)
+                err(EX_OSERR, "dup2");
+            if (execlp("pbpaste", "pbpaste") < 0)
+                err(EX_OSERR, "execlp");
+        }
+
+        uint8_t x;
+        ssize_t peek = recv(client, &x, 1, MSG_PEEK);
+        if (peek < 0) err(EX_IOERR, "recv");
+
+        if (peek) {
+            pid_t pid_copy = fork();
+            if (pid_copy < 0) err(EX_OSERR, "fork");
+
+            if (pid_copy) {
+                if (waitpid(pid_copy, NULL, 0) < 0)
+                    warn("waitpid");
+                // TODO: Check child status.
+            } else {
+                if (dup2(client, STDIN_FILENO) < 0)
+                    err(EX_OSERR, "dup2");
+                if (execlp("pbcopy", "pbcopy") < 0)
+                    err(EX_OSERR, "execlp");
+            }
+        }
+
+        if (close(client) < 0) warn("close");
+    }
+}
diff --git a/install.sh b/install.sh
index dd18fe28..54376f8d 100755
--- a/install.sh
+++ b/install.sh
@@ -22,6 +22,7 @@ link() {
 }
 
 link .bin/manpager
+link .bin/pbd.c
 link .bin/xx.c
 link .config/git/config
 link .config/git/ignore
+0000'>2021-09-15Enter capsicum in downgradeJune McEnroe 2021-09-15Factor out common parts of downgrade messagesJune McEnroe 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe 2021-09-13Swap-remove tags as they're foundJune McEnroe 2021-09-12Replace htagml regex with strncmpJune McEnroe 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe