initial commit

This commit is contained in:
J. Lowell Wofford 2020-11-29 20:28:05 -07:00
commit 59ea98727a
6 changed files with 88 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
Entropy is a simple go pkg and cmdline interface for manipulating entropy in the linux kernel.
It achieves this by using the the IOCTL interface to /dev/(u)random.

15
cmd/entropy/entropy.go Normal file
View File

@ -0,0 +1,15 @@
package main
import (
"log"
"github.com/jlowellwofford/entropy/pkg/entropy"
)
func main() {
ent, err := entropy.GetEntropy()
if err != nil {
log.Fatalf("failed to get entropy: %v", err)
}
log.Printf("current entropy: %d", ent)
}

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module github.com/jlowellwofford/entropy
go 1.15
require golang.org/x/sys v0.0.0-20201119102817-f84b799fce68

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

5
pkg/entropy/entropy.go Normal file
View File

@ -0,0 +1,5 @@
package entropy
func GetEntropy() (int, error) {
return getEntropy()
}

View File

@ -0,0 +1,58 @@
package entropy
import (
"fmt"
"unsafe"
"golang.org/x/sys/unix"
)
var entropy_device = "/dev/urandom"
/* from linux/random.h */
const (
RNDGETENTCNT = 0b10>>30 | 'R'>>8 | 1>>16
RNDADDTOENTCNT = 0x01
RNDGETPOOL = 0x02
RNDADDENTROPY = 0x03
RNDZAPENTCNT = 0x04
RNDCLEARPOOL = 0x06
RNDRESEEDCRNG = 0x07
)
// this is honestly easier through /proc, but in the spirit of completeness...
func getEntropy() (ent int, err error) {
var fd int
if fd, err = unix.Open(entropy_device, unix.O_RDWR, 0); err != nil {
return ent, fmt.Errorf("could not open entropy device (%s): %v", entropy_device, err)
}
defer unix.Close(fd)
/*
nrshift 0
typeshift 8
sizeshift 16
dirshift 30
*/
_, _, err = unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(RNDGETENTCNT), uintptr(unsafe.Pointer(&ent)))
return
}
func addToEntropy() {
}
func addEntropy() {
/* IOCTL argument structure
struct rand_pool_info {
int entropy_count;
int buf_size;
__u32 buf[0];
};
*/
}
func clearPool() {
}