4 * (c) 2010 Martin Mares <mj@ucw.cz>
8 * Things that are not implemented:
11 * - exact behavior of accumulator/R1/R2 (the manual lacks details)
12 * - exact behavior of negative zero
13 * - I/O instructions for devices that are not emulated (paper tape
14 * reader and puncher, card reader and puncher, magnetic tape unit)
28 static int cpu_quota = -1;
29 static int print_quota = -1;
30 static void (*error_hook)(char *msg);
32 // Minsk-2 has 37-bit words in sign-magnitude representation (bit 36 = sign)
33 typedef unsigned long long int word;
35 #define WORD_MASK 01777777777777ULL
36 #define SIGN_MASK 01000000000000ULL
37 #define VAL_MASK 00777777777777ULL
39 static int wsign(word w)
41 return (w & SIGN_MASK) ? -1 : 1;
44 static word wabs(word w)
49 #define WF(w) (wsign(w) < 0 ? '-' : '+'), wabs(w)
51 static long long wtoll(word w)
59 static word wfromll(long long x)
61 word w = ((x < 0) ? -x : x) & VAL_MASK;
67 static double wtofrac(word w)
69 return (double)wtoll(w) / (double)(1ULL << 36);
72 static word wfromfrac(double d)
74 return wfromll((long long)(d * (double)(1ULL << 36)));
77 static int int_in_range(long long x)
79 return (x >= -(long long)VAL_MASK && x <= (long long)VAL_MASK);
82 static int frac_in_range(double d)
84 return (d > -1. && d < 1.);
87 static int wexp(word w)
90 return (w & 0100 ? -exp : exp);
93 static word wputexp(word w, int exp)
95 return ((w & ~(word)0177) | ((exp < 0) ? 0100 | (-exp) : exp));
98 static int wmanti(word w)
100 return ((w >> 8) & ((1 << 28) - 1));
103 static double wtofloat(word w)
105 double x = wmanti(w);
106 return ldexp(x, wexp(w) - 28);
109 static int float_in_range(double x)
112 return (x <= ldexp((1 << 28) - 1, 63 - 28));
115 static word wfromfloat(double x, int normalized)
124 double m = frexp(x, &exp);
125 word mm = (word) ldexp(m, 28);
130 if (normalized || exp < -91)
148 static word mem[4096];
150 static word rd(int addr)
152 word val = addr ? mem[addr] : 0;
154 printf("\tRD %04o = %c%012llo\n", addr, WF(val));
158 static void wr(int addr, word val)
160 assert(!(val & ~(WORD_MASK)));
162 printf("\tWR %04o = %c%012llo\n", addr, WF(val));
168 static void parse_error(char *msg)
171 error_hook("Parse error");
172 printf("Ошибка входа (стр. %d): %s\n", lino, msg);
176 static void parse_in(void)
181 while (fgets(line, sizeof(line), stdin))
184 char *eol = strchr(line, '\n');
186 parse_error("Строка слишком долгая");
190 if (!c[0] || c[0] == ';')
192 if (!strncmp(c, ";daji_zor_i_litva=", 18))
196 error_hook("Secret tracing switch flipped");
205 for (int i=0; i<4; i++)
209 if (*c >= '0' && *c <= '7')
210 addr = 8*addr + *c++ - '0';
212 parse_error("Плохая цифра");
217 parse_error("Адрес слишком долгий");
225 parse_error("Плохой знак");
227 for (int i=0; i<12; i++)
231 if (*c >= '0' && *c <= '7')
232 w = 8*w + *c++ - '0';
234 parse_error("Плохая цифра");
239 parse_error("Номер слишком долгий");
246 static word r1, r2, current_ins;
247 static int ip = 00050; // Standard program start location
250 static void stop(char *reason, char *notice)
254 printf("Машина остановлена -- %s\n", reason);
255 printf("СчАК:%04o См:%c%012llo Р1:%c%012llo Р2:%c%012llo\n", prev_ip, WF(acc), WF(r1), WF(r2));
259 static void over(void)
261 stop("Аварийный останов", "Overflow");
264 static void notimp(void)
267 stop("Устройство разбитое", "Not implemented");
270 static void noins(void)
273 stop("Эту команду не знаю", "Illegal instruction");
276 static uint16_t linebuf[128];
278 static uint16_t russian_chars[64] = {
279 '0', '1', '2', '3', '4', '5', '6', '7', // 0x
280 '8', '9', '+', '-', '/', ',', '.', ' ', // 1x
281 0x2169, '^', '(', ')', 0x00d7, '=', ';', '[', // 2x
282 ']', '*', '`', '\'', 0x2260, '<', '>', ':', // 3x
283 0x410, 0x411, 0x412, 0x413, 0x414, 0x415, 0x416, 0x417, // 4x
284 0x418, 0x419, 0x41a, 0x41b, 0x41c, 0x41d, 0x41e, 0x41f, // 5x
285 0x420, 0x421, 0x422, 0x423, 0x424, 0x425, 0x426, 0x427, // 6x
286 0x428, 0x429, 0x42b, 0x42c, 0x42d, 0x42e, 0x42f, 0x2013 // 7x
289 static uint16_t latin_chars[64] = {
290 '0', '1', '2', '3', '4', '5', '6', '7', // 0x
291 '8', '9', '+', '-', '/', ',', '.', ' ', // 1x
292 0x2169, '^', '(', ')', 0x00d7, '=', ';', '[', // 2x
293 ']', '*', '`', '\'', 0x2260, '<', '>', ':', // 3x
294 'A', 'B', 'W', 'G', 'D', 'E', 'V', 'Z', // 4x
295 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', // 5x
296 'R', 'S', 'T', 'U', 'F', 'H', 'C', ' ', // 6x
297 ' ', ' ', 'Y', 'X', ' ', ' ', 'Q', 0x2013 // 7x
300 static void print_line(int r)
303 * Meaning of bits of r:
304 * 0 = perform line feed
310 if (print_quota > 0 && !--print_quota)
311 stop("Бумага дошла - нужно ехать в Сибирь про новую", "Out of paper");
312 for (int i=0; i<128; i++)
321 putchar(0xc0 | (ch >> 6));
322 putchar(0x80 | (ch & 0x3f));
326 putchar(0xe0 | (ch >> 12));
327 putchar(0x80 | ((ch >> 6) & 0x3f));
328 putchar(0x80 | (ch & 0x3f));
333 memset(linebuf, 0, sizeof(linebuf));
341 static void print_ins(int x, int y)
345 int r = (x >> 9) & 7;
358 case 0: // Decimal float
359 fmt = "+dddddddx+xbd";
361 case 1: // Octal number
362 fmt = "+oooooooooooo";
364 case 2: // Decimal fixed
367 case 3: // Decimal unsigned
371 case 4: // One Russian symbol
374 case 5: // Russian text
377 case 6: // One Latin symbol
380 default: // Latin text
397 ch = (yy & (1ULL << bit)) ? '-' : '+';
401 ch = '0' + ((yy >> bit) & 1);
405 ch = '0' + ((yy >> bit) & 7);
409 ch = '0' + ((yy >> bit) & 15);
415 ch = russian_chars[(yy >> bit) & 077];
419 ch = latin_chars[(yy >> bit) & 077];
427 if (ch == '0' || ch == ' ')
433 pos = (pos+1) & 0177;
438 static void run(void)
447 int op = (w >> 30) & 0177; // Operation code
448 int ax = (w >> 28) & 3; // Address extensions not supported
449 int ix = (w >> 24) & 15; // Indexing
450 int x = (w >> 12) & 07777; // Operands (original form)
452 int xi=x, yi=y; // (indexed form)
454 printf("@%04o %c%02o %02o %04o %04o\n",
456 (w & SIGN_MASK) ? '-' : '+',
457 (int)((w >> 30) & 077),
458 (int)((w >> 24) & 077),
466 xi = (xi + (int)((i >> 12) & 07777)) & 07777;
467 yi = (yi + (int)(i & 07777)) & 07777;
469 printf("\tIndexing -> %04o %04o\n", xi, yi);
474 if (cpu_quota > 0 && !--cpu_quota)
475 stop("Тайм-аут", "CPU quota exceeded");
477 /* Arithmetic operations */
480 long long aa, bb, cc;
484 auto void afetch(void);
494 auto void astore(word result);
495 void astore(word result)
502 auto void astore_int(long long x);
503 void astore_int(long long x)
505 if (!int_in_range(x))
510 auto void astore_frac(double f);
511 void astore_frac(double f)
513 if (!frac_in_range(f))
515 astore(wfromfrac(f));
518 auto void astore_float(double f);
519 void astore_float(double f)
521 if (!float_in_range(f))
523 astore(wfromfloat(f, 0));
532 case 004 ... 007: // XOR
536 case 010 ... 013: // FIX addition
538 astore_int(wtoll(a) + wtoll(b));
540 case 014 ... 017: // FP addition
542 astore_float(wtofloat(a) + wtofloat(b));
544 case 020 ... 023: // FIX subtraction
546 astore_int(wtoll(a) - wtoll(b));
548 case 024 ... 027: // FP subtraction
550 astore_float(wtofloat(a) - wtofloat(b));
552 case 030 ... 033: // FIX multiplication
554 astore_frac(wtofrac(a) * wtofrac(b));
556 case 034 ... 037: // FP multiplication
558 astore_float(wtofloat(a) * wtofloat(b));
560 case 040 ... 043: // FIX division
566 astore_frac(ad / bd);
568 case 044 ... 047: // FP division
572 if (!bd || wexp(b) < -63)
574 astore_float(ad / bd);
576 case 050 ... 053: // FIX subtraction of abs values
578 astore_int(wabs(a) - wabs(b));
580 case 054 ... 057: // FP subtraction of abs values
582 astore_float(fabs(wtofloat(a)) - fabs(wtofloat(b)));
584 case 060 ... 063: // Shift logical
587 if (i <= -37 || i >= 37)
590 astore((a << i) & WORD_MASK);
594 case 064 ... 067: // Shift arithmetical
598 if (i <= -36 || i >= 36)
601 cc = (aa << i) & VAL_MASK;
604 astore((a & SIGN_MASK) | wfromll(cc));
606 case 070 ... 073: // And
610 case 074 ... 077: // Or
618 stop("Останов машины", "Halted");
619 case 0103: // I/O magtape
621 case 0104: // Disable rounding
623 case 0105: // Enable rounding
625 case 0106: // Interrupt control
627 case 0107: // Reverse tape
630 wr(yi, r1 = acc = rd(xi));
632 case 0111: // Move negative
633 wr(yi, acc = (r1 = rd(xi)) ^ SIGN_MASK);
635 case 0112: // Move absolute value
636 wr(yi, acc = (r1 = rd(xi)) & VAL_MASK);
638 case 0113: // Read from keyboard
640 case 0114: // Copy sign
641 wr(yi, acc = rd(yi) ^ ((r1 = rd(xi)) & SIGN_MASK));
643 case 0115: // Read code from R1 (obscure)
645 case 0116: // Copy exponent
646 wr(yi, acc = wputexp(rd(yi), wexp(r1 = rd(xi))));
648 case 0117: // I/O teletype
654 aa = (a >> 24) & 017777;
657 b = rd(y); // (a mountain range near Prague)
658 acc = ((aa-1) << 24) |
659 (((((a >> 12) & 07777) + (b >> 12) & 07777) & 07777) << 12) |
660 (((a & 07777) + (b & 07777)) & 07777);
668 case 0131: // Jump to subroutine
669 wr(y, acc = ((030ULL << 30) | ((ip & 07777ULL) << 12)));
672 case 0132: // Jump if positive
678 case 0133: // Jump if overflow
679 // Since we always trap on overflow, this instruction always jumps to the 1st address
682 case 0134: // Jump if zero
688 case 0135: // Jump if key pressed
689 // No keys are ever pressed, so always jump to 2nd
692 case 0136: // Interrupt masking
694 case 0137: // Used only when reading from tape
696 case 0140 ... 0147: // I/O
698 case 0150 ... 0154: // I/O
700 case 0160 ... 0161: // I/O
702 case 0162: // Printing
707 case 0170: // FIX multiplication, bottom part
709 if (wtofrac(a) * wtofrac(b) >= .1/(1ULL << 32))
711 acc = wfromll(((unsigned long long)wabs(a) * (unsigned long long)wabs(b)) & VAL_MASK);
712 // XXX: What should be the sign? The book does not define that.
725 case 0172: // Add exponents
728 i = wexp(a) + wexp(b);
729 if (i < -63 || i > 63)
734 case 0173: // Sub exponents
737 i = wexp(b) - wexp(a);
738 if (i < -63 || i > 63)
743 case 0174: // Addition in one's complement
750 // XXX: The effect on the accumulator is undocumented, but likely to be as follows:
753 case 0175: // Normalization
758 wr((yi+1) & 07777, 0);
766 while (!(a & (SIGN_MASK >> 1)))
773 wr((yi+1) & 07777, i);
776 case 0176: // Population count
779 for (int i=0; i<36; i++)
782 // XXX: Guessing that acc gets a copy of the result
791 printf("\tACC:%c%012llo R1:%c%012llo R2:%c%012llo\n", WF(acc), WF(r1), WF(r2));
795 /*** Daemon interface ***/
801 #include <sys/signal.h>
802 #include <sys/wait.h>
803 #include <sys/poll.h>
804 #include <sys/socket.h>
805 #include <netinet/in.h>
806 #include <arpa/inet.h>
809 #define DTRACE(msg, args...) fprintf(stderr, msg "\n", ##args)
810 #define DLOG(msg, args...) fprintf(stderr, msg "\n", ##args)
812 #define DTRACE(msg, args...) do { } while(0)
813 #define DLOG(msg, args...) syslog(LOG_INFO, msg, ##args)
816 #define MAX_CONNECTIONS 50 // Per daemon
817 #define MAX_CONNS_PER_IP 1 // Per IP
818 #define MAX_TRACKERS 200 // IP address trackers
819 #define TBF_MAX 5 // Max number of tokens in the bucket
820 #define TBF_REFILL_PER_SEC 0.2 // Bucket refill rate (buckets/sec)
822 #define PID_FILE "/var/run/minsk.pid"
826 static void die(char *msg)
828 fprintf(stderr, "minsk: ");
829 fprintf(stderr, msg);
834 static char **spt_argv;
835 static char *spt_start, *spt_end;
837 static void setproctitle_init(int argc, char **argv)
840 char **env, **oldenv, *t;
844 /* Create a backup copy of environment */
847 for (i=0; oldenv[i]; i++)
848 len += strlen(oldenv[i]) + 1;
849 __environ = env = malloc(sizeof(char *)*(i+1));
851 if (!__environ || !t)
852 die("malloc failed");
853 for (i=0; oldenv[i]; i++)
856 len = strlen(oldenv[i]) + 1;
857 memcpy(t, oldenv[i], len);
862 /* Scan for consecutive free space */
863 spt_start = spt_end = argv[0];
864 for (i=0; i<argc; i++)
865 if (!i || spt_end+1 == argv[i])
866 spt_end = argv[i] + strlen(argv[i]);
867 for (i=0; oldenv[i]; i++)
868 if (spt_end+1 == oldenv[i])
869 spt_end = oldenv[i] + strlen(oldenv[i]);
873 setproctitle(const char *msg, ...)
880 if (spt_end > spt_start)
882 n = vsnprintf(buf, sizeof(buf), msg, args);
883 if (n >= (int) sizeof(buf) || n < 0)
884 sprintf(buf, "<too-long>");
885 n = spt_end - spt_start;
886 strncpy(spt_start, buf, n);
888 spt_argv[0] = spt_start;
894 static void sigchld_handler(int sig __attribute__((unused)))
898 static void sigalrm_handler(int sig __attribute__((unused)))
900 const char err[] = "--- Timed out. Time machine disconnected. ---\n";
901 write(1, err, sizeof(err));
902 DLOG("Connection timed out");
906 static void child_error_hook(char *err)
908 DLOG("Stopped: %s", err);
911 static void child(int sk2)
917 struct sigaction sact = {
918 .sa_handler = sigalrm_handler,
920 if (sigaction(SIGALRM, &sact, NULL) < 0)
921 die("sigaction: %m");
928 const char welcome[] = "+++ Welcome to our computer museum. +++\n+++ Our time machine will connect you to one of our exhibits. +++\n\n";
929 write(1, welcome, sizeof(welcome));
931 error_hook = child_error_hook;
941 struct tracker *tracker;
944 static struct conn connections[MAX_CONNECTIONS];
946 static struct conn *get_conn(struct in_addr *a)
948 for (int i=0; i<MAX_CONNECTIONS; i++)
950 struct conn *c = &connections[i];
953 memcpy(&c->addr, a, sizeof(struct in_addr));
960 static struct conn *pid_to_conn(pid_t pid)
962 for (int i=0; i<MAX_CONNECTIONS; i++)
964 struct conn *c = &connections[i];
971 static void put_conn(struct conn *c)
984 static struct tracker trackers[MAX_TRACKERS];
986 static int get_tracker(struct conn *c)
989 time_t now = time(NULL);
992 for (i=0; i<MAX_TRACKERS; i++)
995 if (!memcmp(&t->addr, &c->addr, sizeof(struct in_addr)))
998 if (i < MAX_TRACKERS)
1000 if (now > t->last_access)
1002 t->tokens += (now - t->last_access) * (double) TBF_REFILL_PER_SEC;
1003 t->last_access = now;
1004 if (t->tokens > TBF_MAX)
1005 t->tokens = TBF_MAX;
1007 DTRACE("TBF: Using tracker %d (%.3f tokens)", i, t->tokens);
1012 for (int i=0; i<MAX_TRACKERS; i++)
1015 if (!t->active_conns && (min_i < 0 || t->last_access < trackers[min_i].last_access))
1020 DLOG("TBF: Out of trackers!");
1023 t = &trackers[min_i];
1025 DTRACE("TBF: Recycling tracker %d", min_i);
1027 DTRACE("TBF: Creating tracker %d", min_i);
1028 memset(t, 0, sizeof(*t));
1030 t->last_access = now;
1031 t->tokens = TBF_MAX;
1034 if (t->active_conns >= MAX_CONNS_PER_IP)
1036 DTRACE("TBF: Too many conns per IP");
1040 if (t->tokens >= 0.999)
1045 DTRACE("TBF: Passed (%d conns)", t->active_conns);
1050 DTRACE("TBF: Failed");
1056 static void put_tracker(struct conn *c)
1058 struct tracker *t = c->tracker;
1061 DLOG("put_tracker: no tracker?");
1065 if (t->active_conns <= 0)
1067 DLOG("put_tracker: no counter?");
1072 DTRACE("TBF: Put tracker (%d conns remain)", t->active_conns);
1075 static void run_as_daemon(int do_fork)
1077 int sk = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
1082 if (setsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0)
1083 die("setsockopt: %m");
1085 struct sockaddr_in sa = {
1086 .sin_family = AF_INET,
1087 .sin_port = ntohs(1969),
1088 .sin_addr.s_addr = INADDR_ANY,
1090 if (bind(sk, (struct sockaddr *) &sa, sizeof(sa)) < 0)
1092 if (listen(sk, 128) < 0)
1094 // if (fcntl(sk, F_SETFL, O_NONBLOCK) < 0)
1095 // die("fcntl: %m");
1104 FILE *f = fopen(PID_FILE, "w");
1107 fprintf(f, "%d\n", pid);
1114 setresgid(GID, GID, GID);
1115 setresuid(UID, UID, UID);
1119 struct sigaction sact = {
1120 .sa_handler = sigchld_handler,
1121 .sa_flags = SA_RESTART,
1123 if (sigaction(SIGCHLD, &sact, NULL) < 0)
1124 die("sigaction: %m");
1126 DLOG("Daemon ready");
1127 setproctitle("minsk: Listening");
1128 openlog("minsk", LOG_PID, LOG_LOCAL7);
1132 struct pollfd pfd[1] = {
1133 { .fd = sk, .events = POLLIN },
1136 int nfds = poll(pfd, 1, 60000);
1137 if (nfds < 0 && errno != EINTR)
1146 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
1148 if (!WIFEXITED(status) || WEXITSTATUS(status))
1149 DLOG("Process %d exited with strange status %x", pid, status);
1151 struct conn *conn = pid_to_conn(pid);
1154 DTRACE("Connection with PID %d exited", pid);
1159 DTRACE("PID %d exited, matching no connection", pid);
1162 if (!(pfd[0].revents & POLLIN))
1165 socklen_t salen = sizeof(sa);
1166 int sk2 = accept(sk, (struct sockaddr *) &sa, &salen);
1176 DTRACE("Got connection: fd=%d", sk2);
1178 struct conn *conn = get_conn(&sa.sin_addr);
1179 const char *reason = NULL;
1182 if (!get_tracker(conn))
1184 DLOG("Connection from %s dropped: Throttling", inet_ntoa(sa.sin_addr));
1187 reason = "--- Sorry, but you are sending too many requests. Please slow down. ---\n";
1192 DLOG("Connection from %s dropped: Too many connections", inet_ntoa(sa.sin_addr));
1193 reason = "--- Sorry, maximum number of connections exceeded. Please come later. ---\n";
1199 DLOG("fork failed: %m");
1208 DLOG("Accepted connection from %s", inet_ntoa(sa.sin_addr));
1209 setproctitle("minsk: %s", inet_ntoa(sa.sin_addr));
1214 DLOG("Sending error message to %s", inet_ntoa(sa.sin_addr));
1215 setproctitle("minsk: %s ERR", inet_ntoa(sa.sin_addr));
1216 write(sk2, reason, strlen(reason));
1221 DTRACE("Created process %d", pid);
1228 static void init_memory(void)
1230 // For the contest, we fill the whole memory with -00 00 0000 0000 (HALT),
1231 // not +00 00 0000 0000 (NOP). Otherwise, an empty program would reveal
1232 // the location of the password :)
1233 for (int i=0; i<4096; i++)
1234 mem[i] = 01000000000000ULL;
1236 // Store the password
1238 mem[pos++] = 0574060565373;
1239 mem[pos++] = 0371741405340;
1240 mem[pos++] = 0534051524017;
1243 int main(int argc, char **argv)
1249 setproctitle_init(argc, argv);
1250 if (!strcmp(argv[1], "--daemon"))
1252 else if (!strcmp(argv[1], "--net"))
1254 else if (!strncmp(argv[1], "--trace=", 8))
1255 trace = atoi(argv[1] + 8);
1257 die("Usage: minsk [--daemon | --net]");