My thoughts on writing a Minecraft server from scratch (in Bash)

For the past year or so, I've been thinking about writing a Minecraft server in Bash as a thought excercise. I once tried that before with the Classic protocol (the one from 2009), but I quickly realized there wasn't really a way to properly parse binary data in bash. Take the following code sample:

function a() { read -n 2 uwu echo "$uwu" | xxd }

This would read two bytes into a variable, and then pass them to `xxd`, which should show the hexdump of the data.

Picture 1 - bash's lack of support for nullbytes

Everything's great, until we pass a nullbyte (0x00). Not only does Bash ignore nullbytes in strings, it also doesn't present any way to detect that a nullbyte has occured. Considering that the protocol I'm trying to implement is strictly binary, this can severely mangle the data.




One rainy evening in late January, I've had a revelation. What if I reversed the order of that function? If the binary data never reaches a variable (or, more precisely, a substitution), and just stays inside a pipe, can it pass nullbytes around?

Picture 2 - reading nullbytes with xxd

The answer is yes! After some iterations, I decided to use `dd` passed to `xxd` instead of just `xxd`, because this way I can finetune how many bytes to read.

# the $len variable is assigned earlier, basing on a similar read function a=$(dd count=$len bs=1 status=none | xxd -p)

This gave me a hex string, on which I could do pattern matching, pattern replace, data extraction... and more. Sending out responses could be done analogically, using xxd's Reverse switch.

`ncat` is used for listening on Minecraft's default TCP port. It launches the main shell script (`mc.sh`) after it receives an incoming connection.

The Protocol Is Not Really Good, Actually

Note: the following section contains mostly my ramblings about implementing number conversion routines in Bash; If this does not interest you, feel free to skip it.

The first thing one should implement for a Minecraft server to function would be the Server List Ping packet - not because it's required (heck, your server can just not reply to it properly, and you'd still be able to join the game), but because it's the easiest to tackle first. It helps to familiarize yourself with core protocol concepts, such as data types types:

VarInts and VarLongs

Most data types were trivial to implement, but some gave me more of a fight than others - notably the IEEE754 floating point numbers (more on them later), and so-called VarInt/VarLong numbers. Those may be familar to those acquainted with the MQTT protocol, as they're just a modified version of the LEB128 encoding.

LEB128 is a compression scheme for integers. By splitting a byte into 1 signalling bit and 7 data bits, the scheme stores the number length. If the 1st bit is 0, then this byte is the last one; else, then there's another byte after this one. Great scheme if most of your numbers are either between 0 and 127 or 256 and 16383, otherwise it's `buy one byte, get one free` situation, because numbers that would otherwise fit in a byte get pushed out to the next one by a single bit.

Picture 3 - explanation of basic LEB128 in a drawing form; red bits are signalling bits, green bits are data bits. Input value is 0xFF (256), output value is 0xFF01 # from src/int.sh # int2varint(int) function int2varint() { local a local b local c local out out=$(printf '%02x' "$1") if [[ $1 -lt 128 ]]; then : elif [[ $1 -lt 16384 ]]; then a=$(($1%128)) b=$(($1/128)) out=$(printf "%02x" $((a+128)))$(printf "%02x" $b) elif [[ $1 -lt $((128*128*128)) ]]; then a=$(($1%128)) c=$((($1/128)%128)) b=$(($1/16384)) out=$(printf "%02x" $((a+128)))$(printf "%02x" $((c+128)))$(printf "%02x" $b) fi echo -n "$out" }

I've had problems translating the reference implementation to Bash, so instead I played with the protocol enough to write my own from scratch. I figured out that it was basically a modulo and a division in a trenchcoat, which I used to my advantage in the code snippet above.

I took a more contemporary approach on the decoder, using an AND, and then multiplying the result - similarly to how the reference did it.

LEB128 definitely wasn't the hardest or the most annoying to implement (that one goes to IEEE754 floating point); I still don't like how it is sprinkled in random places inside the protocol, interleaved with regular ints (and longs), and in some cases even signed shorts.

IEEE 754 Floating Point numbers

I'm not a math person. When I see the exponential notation spewed out by Python, I scream and run. This may be the main cause of why I hated implementing these floating point converters. I won't be going too deep into specifics of how this format works - instead, I recommend you check out this wikipedia page.

The basic implementation requires a loop, inside of which there's a negative power applied to the result; Bash doesn't natively support negative powers, which sent me on a trip to find a utility that does.

A suggestion I found while duckduckgoing was to use perl, but I consider that cheating. Alternatively, tried using `bc`, but it seems that either it doesn't support powers at all, or the busybox version does not. Bummer.

When I was about to give up, I got reminded that Kate once made a plot program in awk. Surely, awk has powers? ~~Maybe even super cow powers?~~ It turns out that it does!

$ echo '' | awk '{print (2**-1)}' 0.5

With this knowledge, I scribbled a working implementation and attached it to data decoded from the Player Move packet. In a trial run, the client sent around 50-100 packets like that, each one with three doubles (X, Y, Z). It turned out that the conversion function was so slow, that the server wasn't done with that workload after multiple minutes - something rather unacceptable for a real-time game.

The easiest solution to lowering the response time would be lowering the amount of calls to external binaries, such as awk. As most of my workload was already inside a bash `for` loop, I just moved the loop inside `awk`, which has saved me literally tens of calls to awk.

# (...) asdf=$(cut -c 13- <<< $val | sed -E 's/./,&/g;s/,//' | tr -d 'n' | awk -F , '{ power_count=-1 x=0; for(i=1; i<=NF; i++) { x=(x + ($i * (2 ** power_count))) power_count=power_count-1; } print(x+1) }') # (...)

The conversion is still quite slow (it takes ~10ms on my Xeon E5-2680v2), but this is to be expected with bash scripts. For a cheap comparsion, the old version took around 350ms, but I don't have solid measurements to prove that. ~~still, 35x faster, woo!~~

"Position" data type

Finally, something made up by Mojang themselves! Position is a 64-bit Long value, where three coordinates are stored alongside each other: X gets 26 most significant bits, Z gets 26 middle bits, Y gets 12 least significant bits. I'm not the biggest fan of weird data types like this one, but it was crazy easy to implement in Bash, because it has all the needed bitshift operators.

The worst part about this data type is that it doesn't actually get used much. Around half of the packets store X, Y and Z coordinates as separate Double vaules. This means that:

I kinda see the reasoning as to why it's like that, but I still don't like the current state. Normal server communication uses zlib anyways, and you realistically won't ever need more than two (or maybe three max) digits of decimal precision to describe a position within a block.

Named Binary Tag

Lastly, there's the NBT format, also an internal thing made by Mojang Hatsune Miku herself. NBT is like JSON, but for binary data. Not unlike JSON, it gets abused to store arbitrary data beyond spec - for example, Mojang stores bitstreams of variable length as an array of Longs; if such array isn't long-aligned, or even byte-aligned, the last Long is padded with zeroes.

At one point I've had a NBT parser implementation implemented almost fully, but I decided it was not worth the hassle to finish it. The code is currently lost, due to my extensive use of tmpfs as a project directory, and a system crash.

Writing the actual server

With all the math out of the way, here comes the *actually fun* part. I documented some of my adventures on Twitter, but that thread was merely a glimpse on the actual development process. Also, let's assume that we already have the Server Ping packet out of our way, and it's a matter of actually making the game joinable now.

To allow a client to join your server, it has to complete the handshake process and send a few extra packets (chunks, player position, inventory, join game). Two biggest obstacles on that course were the Join Game packet, and the data structure within the Chunk packets.

Join game

The join game sends some initial metadata: player's entity ID, gamemode, some information about the world and, since ~1.16, a "Dimension codec". This is a NBT Compound, containing the following fields:

Picture 4 - What if a client gets an empty NBT Compound? It helpfully dumps out all the required values

The Dimension codec part was a major pain to implement. For my purposes, I decided to retrieve that NBT field from a vanilla server. It's the only binary blob in this implementation, and while it could be reimplemented, I don't see any reason to reimplement something that I don't necessarily need (or want) to customize.

Chunk Data And Update Light

At first glance, this packet looks huge and scary! If you have the table from the link above open side by side with this article, I invite you to imagine that every one of those huge BitSet fields is actually just `0x00`, and that you don't need to send the Block Entity field at all. This leaves us with X, Y, heightmaps (which are fancily encoded repetitions of `b000000010`, and could be virtually anything), and the ominous Data field. Less scary, right?

What's the Data?

The Data field is actually an array of Chunk Section. A Chunk Section is 16 by 16 by 16 blocks, and multiple sections can be stacked together to create a Chunk. For our purposes, this array only has a single element, just to simplify the code a bit.

A Chunk Section contains a block count, a block states container, and a biome container. Both of these containers use palette structure to encode possible block values - this means that before the real block data, server has to define a mapping from the "local" block IDs, to "global" block IDs. This aims to squish as much data as possible inside a small space - a block definition can be as small as 4 bits.

As in my opinion the wiki page doesn't explain it well enough to quickly comprehend, here's another drawing:

Picture 5 - left, a visualized palette to global ID mapping; right, a simplified example of how the displayed blocks correspond to the encoded data at 4-bit per block.

For me, the easiest way I found to send those fields data management-wise was to use an 8 bit (instead of a minimal 4 bit) block definition length. This would give me a whopping 256 possible palette entries, out of all available blocks to choose from. Then, writing actual chunk data would be as easy as sending hex numbers referencing those palette entries. A 4-bit palette would be equally easy (a byte represented as a hex string is two characters, representing 4 bits each, so `0x01` would represent two blocks - one with id 0, and another with id 1), but it would limit me to 16 blocks per chunk.

The standard actually allows for anything from 4 bits per block to 9bpb, otherwise it assumes a direct palette mapping with 15bpb - I too have no idea why it isn't byte-aligned.

The biome palette works a bit differently in my implementation - it just sends an empty palette, and then maps biome ID 0x01 (minecraft:plains) directly to all regions inside the chunk. This was based on my reverse engineering of how vanilla works - I suspect that the existing documentation of this part of the packet is incorrect, as I'm either getting too much data, or missing a few bytes every time.

Picture 6 - after fully implementing everything from that list and sending a few chunk packets, we have chunks showing up!

"Plugin" system

By now, we only have a plain chunk, not anything special by any means. I definitely wanted to make a few demos to show that the server can do *more* than just load and show a chunk, but I didn't want to create a separate source tree for every demo I spewed out. My solution is a series of overridable functions I called `hooks`, and an option for the server to load your own code. This allows for anything from changing how the world looks, to hooking up a pkt_effect so your player makes ticking noises while you move the mouse. Below I attach a simple (unoptimized) "plugin" that generates a chunk with random blocks from the default palette, which makes for an oddity that's kinda interesting visually.

#!/usr/bin/env bash # map.sh - simple map modification showcase function hook_chunks() { chunk_header for (( i=0; i<4096; i++ )); do chunk+="$(printf '%02x' $((RANDOM%30)))" done chunk_footer echo "$chunk" > $TEMP/world/0000000000000000 pkt_chunk FFFFFFFF FFFFFFFF 00 pkt_chunk FFFFFFFF 00000000 00 pkt_chunk FFFFFFFF 00000001 00 pkt_chunk 00000000 FFFFFFFF 00 pkt_chunk 00000000 00000000 pkt_chunk 00000000 00000001 00 pkt_chunk 00000001 FFFFFFFF 00 pkt_chunk 00000001 00000000 00 pkt_chunk 00000001 00000001 00 } Picture 7 - output of the code displayed above

Another demo worth taking a look at is digmeout - it's a simple highscore based game, which throws you onto a chunk with randomly placed stone and ores. Dig out the most valuable ores until the timer runs out!

Picture 8 - you know the game and, you're gonna play it

Witchcraft's (that's the project name!) Quirks

FAQ

Q: Why?

A: Because I could. And it was fun!


Q: Where do the block IDs come from?

A: Witchcraft-internal IDs are defined in src/palette.sh, and can be redefined in "plugins". The external IDs to which the internal ones are mapped can be acquired from the vanilla server. Check out this reference page on Data Generators.


Q: Why "WitchCraft"?

A: selfisekai came up with that name, possibly because I'm a (bash) witch, and I thought it was *great*

Resources


Big thanks to Lauren, Mae and cadence for proofreading this post! :3


Support me on ko-fi!

Comments:

Everyone at 15.02.2022, 16:40:40

Liked that

helpful person at 15.02.2022, 16:59:22

This project is wicked cool but your font choices make it super hard to read. And this black-on-dark-gray comment box is insane! :D

Saphire at 15.02.2022, 17:10:48

Oh dear, that is cursed. Much more so than the HTTP(s) server in bash that I have seen around... I love it~! ...wait is the font for this the minecraft font. And agree with previous comment, the black-on-gray is hard to read q-q

new reader at 15.02.2022, 17:48:56

as someone that knows very little bash, this was extremely fun to read. love the website too! :)

awesome stuff at 15.02.2022, 17:49:01

awesome stuff

josΓ© at 15.02.2022, 18:06:37

I've had this idea a few months ago and I didn't think it was possible. This is awesome! good work.

Artur at 15.02.2022, 18:15:27

Awesome stuff

lily at 15.02.2022, 18:17:05

i hate it here

prefetcher at 15.02.2022, 18:22:08

This is absolutely awesome! Great work!!

Rafael at 15.02.2022, 18:49:27

Amazing work!

Daniel at 15.02.2022, 18:49:40

That's amazing! Good job!

keldu at 15.02.2022, 19:20:46

That's crazy. I wrote a small MC network implementation in C++ and gave up after I started to see how they randomly change packets in different versions. I didn't want to keep up with that. But do this in bash for MC is crazy. I went back and wrote a small reverse proxy server for MC though.

Theo at 15.02.2022, 19:36:33

Your website is great. Your posts are great. Your everything is great. Keep up the work, It's definitely worth it...

bigking at 15.02.2022, 19:39:06

ilove this. gonna play with it, if i manage to make something worthwhile i let you know. thanks for this interesting unconventional project.

Mikael at 15.02.2022, 20:03:07

Cool project! May I ask how much time went into it? I don't really know how complex the protocol is or how long time each test takes, like if you need to restart the client and stuff.

anon at 15.02.2022, 20:53:12

nice

Triggernometry at 15.02.2022, 21:16:27

this is a glorious write-up of the process tho. one of the best ways to learn coding is to do or see "what if i did this stupid pointless thing" then seeing aaaaaall the pitfalls

eggmtf at 15.02.2022, 21:19:43

this is insane but really cool, nice work!

hyperupcall at 15.02.2022, 21:25:36

I do a lot of Bash and lemmie tell you, this is pretty badass! Some people would say it's cursed, but I think its just cool - Thanks for sharing ^w^

egg at 15.02.2022, 22:03:16

Wow for the hackery of the "in Bash", and nice font reminds me of some VGA stuff.

anon at 15.02.2022, 22:17:18

neato

j3s at 16.02.2022, 01:34:09

dope af

a nat you don't know at 16.02.2022, 02:19:17

delightfully cursed, i love it

chip at 16.02.2022, 02:49:23

Hardcore :D

ayo at 16.02.2022, 06:12:39

noice

trekkie1701c at 16.02.2022, 06:16:55

You can hackily handle floating point numbers in a bash script by piping the equation through BCMath. In the case that I've had to do it, it's pretty much: var=$(echo "scale=9;$num1/$num2" | bc) Where the 9 is the number of decimal places and / is the operand and can be replaced by whatever. This is probably highly inefficient but hey it works.

punk xfce at 16.02.2022, 08:19:20

I didn't read that

annow at 16.02.2022, 11:11:57

i've never think about it, congrats

M at 16.02.2022, 11:21:37

This is exactly the kind of insane (in a good way) stuff I love to read about! Looking forward to more of this! :3

Charles Duffy at 16.02.2022, 13:13:19

You can absolutely read and write streams containing NULs in bash -- the trick is to store them as arrays (with the terminal element containing everything after the last NUL) instead of as strings. Also, echo is an abomination in general, and even the POSIX spec describing it says that printf should be used instead -- search for the excellent answer by StΓ©phane Chazelas to "Why is printf better than echo?" on unix.stackexchange.com

RJM at 16.02.2022, 19:12:40

I respect your work so much! Awesome job!

RSEA at 16.02.2022, 20:00:24

Great piece. Terminus font in the screenshots also, the best terminal font by far.

LeigerGaming at 16.02.2022, 22:23:12

Interesting!

Wensz at 16.02.2022, 22:42:09

I got rickrolled at the ending.

Francois Scheurer at 17.02.2022, 10:43:56

nice work! I was puzzled with the line: a=$(dd count=2 bs=$len status=none | xxd -p) as dd cannot will hangs here on an empty stdin. or maybe it's lacking context and your script stdin is filled already with data...? or are you using some function like this? function a() { dd count=$len bs=1 status=none | xxd -p; } anyway it is a clever idea to use dd to deal with null chars! Another way would be to use tempfiles (in ram) instead of strings variables, but that would probably perform slower.

Drygord at 19.02.2022, 18:40:39

Cool project - what is the font and color scheme of this webpage?

A at 03.03.2022, 01:10:46

SO

mine at 04.03.2022, 21:41:59

craft

chfour at 10.03.2022, 19:11:45

that is, quite literally, witchcraft. I'm amazed. I mean I made an HTTP server in browser Javascript, and that's NOTHING compared to this. this is a fully functional, real time minecraft server. a full-on online 3D game. Wow. also, lovely font choice ;)

me at 10.03.2022, 19:17:31

My BRAIN IS BOGELED

NotNite at 04.05.2022, 23:21:31

wow this is horrifying

some guy on the interweb of tubes at 25.12.2022, 23:42:35

This is sooo cool! I once tried to write an http server in bash and gave up on it after writing file serving code became too hard for me

test at 29.12.2022, 16:01:13

test

juh at 06.02.2023, 17:36:51

inspires fear in friends and enemies alike :D

Bobby Tables at 02.03.2024, 20:04:46

cool post, i loved it'); DROP TABLE comment_section --

πŸ€ͺ at 02.03.2024, 20:41:05

πŸ€ͺ

Lit at 02.03.2024, 20:49:23

This is a beautiful abomination. I hope you're proud of yourself. πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯

keratoconus at 02.03.2024, 20:58:13

Please add a light theme :(

Slug at 02.03.2024, 22:36:54

Agree that the font makes this super hard to read. If i zoom in or out at all in Chrome it becomes blurry. BUT - persevered to read the content of the article which was super cool! Awesome work

anonymouse at 03.03.2024, 02:25:04

function stdin2hexdump() { local LC_ALL= LC_CTYPE=C LC_COLLATE=C LANG= local IFS="" c b h o=0 hs= cs= i1=$'\033[7m' i0=$'\033[27m' while read -r -s -d "" -n 1 c; do printf -v b "%d" "'${c}" printf -v h "%02X" "${b}" case "${c}" in $'\000' ) c="${i1}@${i0}";; $'\001' ) c="${i1}A${i0}";; $'\002' ) c="${i1}B${i0}";; $'\003' ) c="${i1}C${i0}";; $'\004' ) c="${i1}D${i0}";; $'\005' ) c="${i1}E${i0}";; $'\006' ) c="${i1}F${i0}";; $'\007' ) c="${i1}G${i0}";; $'\010' ) c="${i1}H${i0}";; $'\011' ) c="${i1}I${i0}";; $'\012' ) c="${i1}J${i0}";; $'\013' ) c="${i1}K${i0}";; $'\014' ) c="${i1}L${i0}";; $'\015' ) c="${i1}M${i0}";; $'\016' ) c="${i1}N${i0}";; $'\017' ) c="${i1}O${i0}";; $'\020' ) c="${i1}P${i0}";; $'\021' ) c="${i1}Q${i0}";; $'\022' ) c="${i1}R${i0}";; $'\023' ) c="${i1}S${i0}";; $'\024' ) c="${i1}T${i0}";; $'\025' ) c="${i1}U${i0}";; $'\026' ) c="${i1}V${i0}";; $'\027' ) c="${i1}W${i0}";; $'\030' ) c="${i1}X${i0}";; $'\031' ) c="${i1}Y${i0}";; $'\032' ) c="${i1}Z${i0}";; $'\033' ) c="${i1}[${i0}";; $'\034' ) c="${i1}\\${i0}";; $'\035' ) c="${i1}]${i0}";; $'\036' ) c="${i1}^${i0}";; $'\037' ) c="${i1}_${i0}";; $'\177' ) c="${i1}?${i0}";; esac (( b > 127 )) && c="${i1}.${i0}" hs+=" ${h}" cs+="${c}" (( o++ )) (( o % 16 )) || { printf "%08X |%s | %s |\n" "$(( ${o} - 16 ))" "${hs}" "${cs}"; hs=; cs=; } done (( o % 16 )) && printf "%08X |%-48s | %s |\n" "$(( ${o} - ( ${o} % 16 ) ))" "${hs}" "${cs}" }

You at 03.03.2024, 17:57:10

Looking good!

kidofcubes at 06.03.2024, 13:56:43

cursed!

d4mr at 06.03.2024, 22:18:53

I absolutely love the aesthetic of your blog, don't listen to the haters

hatkidchan at 07.03.2024, 08:36:11

Got reminded of it once again and also quick note (already sent in DMs): you *can* do powers in bc, even in busybox one (I think? I tried with `busybox bc`) and you just have to give it `-l` flag.

I use arch btw at 10.03.2024, 09:38:51

I've seen someone make OpenGL bindings for bash, so people can also build Minecraft clients in bash.

merith-tk at 10.03.2024, 15:41:33

I was hoping there was a way to convert a minecraft world to the format this software uses so i can use it as a *performant* lobby server

Counter Code at 10.03.2024, 15:41:52

This is insane!!!

bt at 10.03.2024, 16:51:38

That's so sick and cursed, i love it

Dylan at 16.03.2024, 22:43:15

This is so cursed. I love it.

Dylan at 16.03.2024, 22:48:55

oh the last person commented basically the same thing haha

By commenting, you agree for the session cookie to be stored on your device ;p