13 "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
14 "git.curoverse.com/arvados.git/sdk/go/config"
15 "git.curoverse.com/arvados.git/sdk/go/httpserver"
16 "git.curoverse.com/arvados.git/sdk/go/keepclient"
17 log "github.com/Sirupsen/logrus"
18 "github.com/coreos/go-systemd/daemon"
19 "github.com/ghodss/yaml"
22 // A Keep "block" is 64MB.
23 const BlockSize = 64 * 1024 * 1024
25 // A Keep volume must have at least MinFreeKilobytes available
26 // in order to permit writes.
27 const MinFreeKilobytes = BlockSize / 1024
29 // ProcMounts /proc/mounts
30 var ProcMounts = "/proc/mounts"
36 type KeepError struct {
42 BadRequestError = &KeepError{400, "Bad Request"}
43 UnauthorizedError = &KeepError{401, "Unauthorized"}
44 CollisionError = &KeepError{500, "Collision"}
45 RequestHashError = &KeepError{422, "Hash mismatch in request"}
46 PermissionError = &KeepError{403, "Forbidden"}
47 DiskHashError = &KeepError{500, "Hash mismatch in stored data"}
48 ExpiredError = &KeepError{401, "Expired permission signature"}
49 NotFoundError = &KeepError{404, "Not Found"}
50 GenericError = &KeepError{500, "Fail"}
51 FullError = &KeepError{503, "Full"}
52 SizeRequiredError = &KeepError{411, "Missing Content-Length"}
53 TooLongError = &KeepError{413, "Block is too large"}
54 MethodDisabledError = &KeepError{405, "Method disabled"}
55 ErrNotImplemented = &KeepError{500, "Unsupported configuration"}
56 ErrClientDisconnect = &KeepError{503, "Client disconnected"}
59 func (e *KeepError) Error() string {
63 // ========================
64 // Internal data structures
66 // These global variables are used by multiple parts of the
67 // program. They are good candidates for moving into their own
70 // The Keep VolumeManager maintains a list of available volumes.
71 // Initialized by the --volumes flag (or by FindKeepVolumes).
72 var KeepVM VolumeManager
74 // The pull list manager and trash queue are threadsafe queues which
75 // support atomic update operations. The PullHandler and TrashHandler
76 // store results from Data Manager /pull and /trash requests here.
78 // See the Keep and Data Manager design documents for more details:
79 // https://arvados.org/projects/arvados/wiki/Keep_Design_Doc
80 // https://arvados.org/projects/arvados/wiki/Data_Manager_Design_Doc
86 deprecated.beforeFlagParse(theConfig)
88 dumpConfig := flag.Bool("dump-config", false, "write current configuration to stdout and exit (useful for migrating from command line flags to config file)")
90 defaultConfigPath := "/etc/arvados/keepstore/keepstore.yml"
96 "YAML or JSON configuration file `path`")
100 deprecated.afterFlagParse(theConfig)
102 err := config.LoadFile(theConfig, configPath)
103 if err != nil && (!os.IsNotExist(err) || configPath != defaultConfigPath) {
108 y, err := yaml.Marshal(theConfig)
116 err = theConfig.Start()
121 if pidfile := theConfig.PIDFile; pidfile != "" {
122 f, err := os.OpenFile(pidfile, os.O_RDWR|os.O_CREATE, 0777)
124 log.Fatalf("open pidfile (%s): %s", pidfile, err)
127 err = syscall.Flock(int(f.Fd()), syscall.LOCK_EX|syscall.LOCK_NB)
129 log.Fatalf("flock pidfile (%s): %s", pidfile, err)
131 defer os.Remove(pidfile)
134 log.Fatalf("truncate pidfile (%s): %s", pidfile, err)
136 _, err = fmt.Fprint(f, os.Getpid())
138 log.Fatalf("write pidfile (%s): %s", pidfile, err)
142 log.Fatalf("sync pidfile (%s): %s", pidfile, err)
146 log.Println("keepstore starting, pid", os.Getpid())
147 defer log.Println("keepstore exiting, pid", os.Getpid())
149 // Start a round-robin VolumeManager with the volumes we have found.
150 KeepVM = MakeRRVolumeManager(theConfig.Volumes)
152 // Middleware stack: logger, MaxRequests limiter, method handlers
153 router := MakeRESTRouter()
154 limiter := httpserver.NewRequestLimiter(theConfig.MaxRequests, router)
155 router.limiter = limiter
156 http.Handle("/", &LoggingRESTRouter{router: limiter})
158 // Set up a TCP listener.
159 listener, err := net.Listen("tcp", theConfig.Listen)
164 // Initialize Pull queue and worker
165 keepClient := &keepclient.KeepClient{
166 Arvados: &arvadosclient.ArvadosClient{},
168 Client: &http.Client{},
171 // Initialize the pullq and worker
172 pullq = NewWorkQueue()
173 go RunPullWorker(pullq, keepClient)
175 // Initialize the trashq and worker
176 trashq = NewWorkQueue()
177 go RunTrashWorker(trashq)
179 // Start emptyTrash goroutine
180 doneEmptyingTrash := make(chan bool)
181 go emptyTrash(doneEmptyingTrash, theConfig.TrashCheckInterval.Duration())
183 // Shut down the server gracefully (by closing the listener)
184 // if SIGTERM is received.
185 term := make(chan os.Signal, 1)
186 go func(sig <-chan os.Signal) {
188 log.Println("caught signal:", s)
189 doneEmptyingTrash <- true
192 signal.Notify(term, syscall.SIGTERM)
193 signal.Notify(term, syscall.SIGINT)
195 if _, err := daemon.SdNotify(false, "READY=1"); err != nil {
196 log.Printf("Error notifying init daemon: %v", err)
198 log.Println("listening at", listener.Addr())
199 srv := &http.Server{}
203 // Periodically (once per interval) invoke EmptyTrash on all volumes.
204 func emptyTrash(done <-chan bool, interval time.Duration) {
205 ticker := time.NewTicker(interval)
210 for _, v := range theConfig.Volumes {