restructure entropy command; streamline pkg; add addto function

This commit is contained in:
J. Lowell Wofford 2020-11-30 10:59:38 -07:00
parent 8b10facda8
commit 8defb738fc
3 changed files with 81 additions and 13 deletions

View File

@ -1,15 +1,70 @@
package main
import (
"log"
"fmt"
"os"
"strconv"
"github.com/jlowellwofford/entropy/pkg/entropy"
)
func usage() {
fmt.Printf(`
Usage: %s <command> [<opts>...]
Commands:
get(entropy) - get the current system entropy.
addto(entcnt) <num> - Add <num> to the current entropy count (must be root).
`, os.Args[0])
}
func usageFatal(str string, args ...interface{}) {
fmt.Printf("\n"+str+"\n", args...)
usage()
os.Exit(1)
}
func fatal(str string, args ...interface{}) {
fmt.Printf(str+"\n", args...)
os.Exit(1)
}
func main() {
ent, err := entropy.GetEntropy()
if err != nil {
log.Fatalf("failed to get entropy: %v", err)
var err error
if len(os.Args) < 2 {
usage()
os.Exit(1)
}
switch os.Args[1] {
case "get":
fallthrough
case "getentropy":
var ent int
if ent, err = entropy.GetEntCnt(); err != nil {
fatal("failed to get entropy: %v", err)
}
fmt.Printf("%d\n", ent)
case "addto":
fallthrough
case "addtoentcnt":
if len(os.Args) != 3 {
usageFatal("addtoentcnt requires a number to add as an option")
}
var add int
if add, err = strconv.Atoi(os.Args[2]); err != nil {
usageFatal("provided option does not appear to be a valid number: %v", err)
}
if err = entropy.AddToEntCnt(add); err != nil {
fatal("entropy addition failed: %v", err)
}
case "help":
fallthrough
case "usage":
usage()
default:
usageFatal("unrecognized command: %s", os.Args[1])
}
log.Printf("current entropy: %d", ent)
}

View File

@ -1,5 +1,9 @@
package entropy
func GetEntropy() (int, error) {
return getEntropy()
func GetEntCnt() (int, error) {
return getEntCnt()
}
func AddToEntCnt(add int) error {
return addToEntCnt(add)
}

View File

@ -10,22 +10,31 @@ import (
var entropy_device = "/dev/urandom"
// this is honestly easier through /proc, but in the spirit of completeness...
func getEntropy() (ent int, err error) {
func entropyIoctl(request int, data uintptr) (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)
return fmt.Errorf("could not open entropy device (%s): %v", entropy_device, err)
}
defer unix.Close(fd)
var errno syscall.Errno
_, _, errno = unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(RNDGETENTCNT), uintptr(unsafe.Pointer(&ent)))
_, _, errno = unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(request), data)
if errno != 0 {
err = errno
}
return err
}
// this is honestly easier through /proc, but in the spirit of completeness...
func getEntCnt() (ent int, err error) {
err = entropyIoctl(RNDGETENTCNT, uintptr(unsafe.Pointer(&ent)))
return
}
func addToEntCnt(add int) (err error) {
return entropyIoctl(RNDADDTOENTCNT, uintptr(unsafe.Pointer(&add)))
}
func addToEntropy() {
}