12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397 |
- package docker
- import (
- "bufio"
- "encoding/json"
- "errors"
- "fmt"
- "github.com/dotcloud/docker/auth"
- "github.com/dotcloud/docker/registry"
- "github.com/dotcloud/docker/utils"
- "io"
- "io/ioutil"
- "log"
- "net/http"
- "net/url"
- "os"
- "os/exec"
- "path"
- "path/filepath"
- "runtime"
- "strings"
- "sync"
- "time"
- )
- func (srv *Server) DockerVersion() APIVersion {
- return APIVersion{
- Version: VERSION,
- GitCommit: GITCOMMIT,
- GoVersion: runtime.Version(),
- }
- }
- // simpleVersionInfo is a simple implementation of
- // the interface VersionInfo, which is used
- // to provide version information for some product,
- // component, etc. It stores the product name and the version
- // in string and returns them on calls to Name() and Version().
- type simpleVersionInfo struct {
- name string
- version string
- }
- func (v *simpleVersionInfo) Name() string {
- return v.name
- }
- func (v *simpleVersionInfo) Version() string {
- return v.version
- }
- // versionCheckers() returns version informations of:
- // docker, go, git-commit (of the docker) and the host's kernel.
- //
- // Such information will be used on call to NewRegistry().
- func (srv *Server) versionInfos() []utils.VersionInfo {
- v := srv.DockerVersion()
- ret := make([]utils.VersionInfo, 0, 4)
- ret = append(ret, &simpleVersionInfo{"docker", v.Version})
- if len(v.GoVersion) > 0 {
- ret = append(ret, &simpleVersionInfo{"go", v.GoVersion})
- }
- if len(v.GitCommit) > 0 {
- ret = append(ret, &simpleVersionInfo{"git-commit", v.GitCommit})
- }
- kernelVersion, err := utils.GetKernelVersion()
- if err == nil {
- ret = append(ret, &simpleVersionInfo{"kernel", kernelVersion.String()})
- }
- return ret
- }
- func (srv *Server) ContainerKill(name string) error {
- if container := srv.runtime.Get(name); container != nil {
- if err := container.Kill(); err != nil {
- return fmt.Errorf("Error killing container %s: %s", name, err)
- }
- srv.LogEvent("kill", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- return nil
- }
- func (srv *Server) ContainerExport(name string, out io.Writer) error {
- if container := srv.runtime.Get(name); container != nil {
- data, err := container.Export()
- if err != nil {
- return err
- }
- // Stream the entire contents of the container (basically a volatile snapshot)
- if _, err := io.Copy(out, data); err != nil {
- return err
- }
- srv.LogEvent("export", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- return nil
- }
- return fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) ImagesSearch(term string) ([]APISearch, error) {
- r, err := registry.NewRegistry(srv.runtime.root, nil, srv.HTTPRequestFactory(nil))
- if err != nil {
- return nil, err
- }
- results, err := r.SearchRepositories(term)
- if err != nil {
- return nil, err
- }
- var outs []APISearch
- for _, repo := range results.Results {
- var out APISearch
- out.Description = repo["description"]
- out.Name = repo["name"]
- outs = append(outs, out)
- }
- return outs, nil
- }
- func (srv *Server) ImageInsert(name, url, path string, out io.Writer, sf *utils.StreamFormatter) (string, error) {
- out = utils.NewWriteFlusher(out)
- img, err := srv.runtime.repositories.LookupImage(name)
- if err != nil {
- return "", err
- }
- file, err := utils.Download(url, out)
- if err != nil {
- return "", err
- }
- defer file.Body.Close()
- config, _, _, err := ParseRun([]string{img.ID, "echo", "insert", url, path}, srv.runtime.capabilities)
- if err != nil {
- return "", err
- }
- c, err := srv.runtime.Create(config)
- if err != nil {
- return "", err
- }
- if err := c.Inject(utils.ProgressReader(file.Body, int(file.ContentLength), out, sf.FormatProgress("", "Downloading", "%8v/%v (%v)"), sf, true), path); err != nil {
- return "", err
- }
- // FIXME: Handle custom repo, tag comment, author
- img, err = srv.runtime.Commit(c, "", "", img.Comment, img.Author, nil)
- if err != nil {
- return "", err
- }
- out.Write(sf.FormatStatus("", img.ID))
- return img.ShortID(), nil
- }
- func (srv *Server) ImagesViz(out io.Writer) error {
- images, _ := srv.runtime.graph.Map()
- if images == nil {
- return nil
- }
- out.Write([]byte("digraph docker {\n"))
- var (
- parentImage *Image
- err error
- )
- for _, image := range images {
- parentImage, err = image.GetParent()
- if err != nil {
- return fmt.Errorf("Error while getting parent image: %v", err)
- }
- if parentImage != nil {
- out.Write([]byte(" \"" + parentImage.ShortID() + "\" -> \"" + image.ShortID() + "\"\n"))
- } else {
- out.Write([]byte(" base -> \"" + image.ShortID() + "\" [style=invis]\n"))
- }
- }
- reporefs := make(map[string][]string)
- for name, repository := range srv.runtime.repositories.Repositories {
- for tag, id := range repository {
- reporefs[utils.TruncateID(id)] = append(reporefs[utils.TruncateID(id)], fmt.Sprintf("%s:%s", name, tag))
- }
- }
- for id, repos := range reporefs {
- out.Write([]byte(" \"" + id + "\" [label=\"" + id + "\\n" + strings.Join(repos, "\\n") + "\",shape=box,fillcolor=\"paleturquoise\",style=\"filled,rounded\"];\n"))
- }
- out.Write([]byte(" base [style=invisible]\n}\n"))
- return nil
- }
- func (srv *Server) Images(all bool, filter string) ([]APIImages, error) {
- var (
- allImages map[string]*Image
- err error
- )
- if all {
- allImages, err = srv.runtime.graph.Map()
- } else {
- allImages, err = srv.runtime.graph.Heads()
- }
- if err != nil {
- return nil, err
- }
- outs := []APIImages{} //produce [] when empty instead of 'null'
- for name, repository := range srv.runtime.repositories.Repositories {
- if filter != "" {
- if match, _ := path.Match(filter, name); !match {
- continue
- }
- }
- for tag, id := range repository {
- var out APIImages
- image, err := srv.runtime.graph.Get(id)
- if err != nil {
- log.Printf("Warning: couldn't load %s from %s/%s: %s", id, name, tag, err)
- continue
- }
- delete(allImages, id)
- out.Repository = name
- out.Tag = tag
- out.ID = image.ID
- out.Created = image.Created.Unix()
- out.Size = image.Size
- out.VirtualSize = image.getParentsSize(0) + image.Size
- outs = append(outs, out)
- }
- }
- // Display images which aren't part of a
- if filter == "" {
- for _, image := range allImages {
- var out APIImages
- out.ID = image.ID
- out.Created = image.Created.Unix()
- out.Size = image.Size
- out.VirtualSize = image.getParentsSize(0) + image.Size
- outs = append(outs, out)
- }
- }
- sortImagesByCreationAndTag(outs)
- return outs, nil
- }
- func (srv *Server) DockerInfo() *APIInfo {
- images, _ := srv.runtime.graph.Map()
- var imgcount int
- if images == nil {
- imgcount = 0
- } else {
- imgcount = len(images)
- }
- lxcVersion := ""
- if output, err := exec.Command("lxc-version").CombinedOutput(); err == nil {
- outputStr := string(output)
- if len(strings.SplitN(outputStr, ":", 2)) == 2 {
- lxcVersion = strings.TrimSpace(strings.SplitN(string(output), ":", 2)[1])
- }
- }
- kernelVersion := "<unknown>"
- if kv, err := utils.GetKernelVersion(); err == nil {
- kernelVersion = kv.String()
- }
- devSetInfo := srv.runtime.deviceSet.Status()
- return &APIInfo{
- Containers: len(srv.runtime.List()),
- Images: imgcount,
- MemoryLimit: srv.runtime.capabilities.MemoryLimit,
- SwapLimit: srv.runtime.capabilities.SwapLimit,
- IPv4Forwarding: !srv.runtime.capabilities.IPv4ForwardingDisabled,
- Debug: os.Getenv("DEBUG") != "",
- NFd: utils.GetTotalUsedFds(),
- NGoroutines: runtime.NumGoroutine(),
- LXCVersion: lxcVersion,
- NEventsListener: len(srv.events),
- KernelVersion: kernelVersion,
- IndexServerAddress: auth.IndexServerAddress(),
- DevmapperPool: devSetInfo.PoolName,
- DevmapperDataUsed: devSetInfo.Data.Used,
- DevmapperDataTotal: devSetInfo.Data.Total,
- DevmapperMetadataUsed: devSetInfo.Metadata.Used,
- DevmapperMetadataTotal: devSetInfo.Metadata.Total,
- }
- }
- func (srv *Server) ImageHistory(name string) ([]APIHistory, error) {
- image, err := srv.runtime.repositories.LookupImage(name)
- if err != nil {
- return nil, err
- }
- lookupMap := make(map[string][]string)
- for name, repository := range srv.runtime.repositories.Repositories {
- for tag, id := range repository {
- // If the ID already has a reverse lookup, do not update it unless for "latest"
- if _, exists := lookupMap[id]; !exists {
- lookupMap[id] = []string{}
- }
- lookupMap[id] = append(lookupMap[id], name+":"+tag)
- }
- }
- outs := []APIHistory{} //produce [] when empty instead of 'null'
- err = image.WalkHistory(func(img *Image) error {
- var out APIHistory
- out.ID = srv.runtime.repositories.ImageName(img.ShortID())
- out.Created = img.Created.Unix()
- out.CreatedBy = strings.Join(img.ContainerConfig.Cmd, " ")
- out.Tags = lookupMap[img.ID]
- outs = append(outs, out)
- return nil
- })
- return outs, nil
- }
- func (srv *Server) ContainerTop(name, ps_args string) (*APITop, error) {
- if container := srv.runtime.Get(name); container != nil {
- output, err := exec.Command("lxc-ps", "--name", container.ID, "--", ps_args).CombinedOutput()
- if err != nil {
- return nil, fmt.Errorf("Error trying to use lxc-ps: %s (%s)", err, output)
- }
- procs := APITop{}
- for i, line := range strings.Split(string(output), "\n") {
- if len(line) == 0 {
- continue
- }
- words := []string{}
- scanner := bufio.NewScanner(strings.NewReader(line))
- scanner.Split(bufio.ScanWords)
- if !scanner.Scan() {
- return nil, fmt.Errorf("Error trying to use lxc-ps")
- }
- // no scanner.Text because we skip container id
- for scanner.Scan() {
- words = append(words, scanner.Text())
- }
- if i == 0 {
- procs.Titles = words
- } else {
- procs.Processes = append(procs.Processes, words)
- }
- }
- return &procs, nil
- }
- return nil, fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) ContainerChanges(name string) ([]Change, error) {
- if container := srv.runtime.Get(name); container != nil {
- return container.Changes()
- }
- return nil, fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) Containers(all, size bool, n int, since, before string) []APIContainers {
- var foundBefore bool
- var displayed int
- retContainers := []APIContainers{}
- for _, container := range srv.runtime.List() {
- if !container.State.Running && !all && n == -1 && since == "" && before == "" {
- continue
- }
- if before != "" {
- if container.ShortID() == before {
- foundBefore = true
- continue
- }
- if !foundBefore {
- continue
- }
- }
- if displayed == n {
- break
- }
- if container.ShortID() == since {
- break
- }
- displayed++
- c := APIContainers{
- ID: container.ID,
- }
- c.Image = srv.runtime.repositories.ImageName(container.Image)
- c.Command = fmt.Sprintf("%s %s", container.Path, strings.Join(container.Args, " "))
- c.Created = container.Created.Unix()
- c.Status = container.State.String()
- c.Ports = container.NetworkSettings.PortMappingAPI()
- if size {
- c.SizeRw, c.SizeRootFs = container.GetSize()
- }
- retContainers = append(retContainers, c)
- }
- return retContainers
- }
- func (srv *Server) ContainerCommit(name, repo, tag, author, comment string, config *Config) (string, error) {
- container := srv.runtime.Get(name)
- if container == nil {
- return "", fmt.Errorf("No such container: %s", name)
- }
- img, err := srv.runtime.Commit(container, repo, tag, comment, author, config)
- if err != nil {
- return "", err
- }
- return img.ShortID(), err
- }
- func (srv *Server) ContainerTag(name, repo, tag string, force bool) error {
- if err := srv.runtime.repositories.Set(repo, tag, name, force); err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) pullImage(r *registry.Registry, out io.Writer, imgID, endpoint string, token []string, sf *utils.StreamFormatter) error {
- history, err := r.GetRemoteHistory(imgID, endpoint, token)
- if err != nil {
- return err
- }
- out.Write(sf.FormatProgress(utils.TruncateID(imgID), "Pulling", "dependend layers"))
- // FIXME: Try to stream the images?
- // FIXME: Launch the getRemoteImage() in goroutines
- for _, id := range history {
- // ensure no two downloads of the same layer happen at the same time
- if err := srv.poolAdd("pull", "layer:"+id); err != nil {
- utils.Errorf("Image (id: %s) pull is already running, skipping: %v", id, err)
- return nil
- }
- defer srv.poolRemove("pull", "layer:"+id)
- if !srv.runtime.graph.Exists(id) {
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Pulling", "metadata"))
- imgJSON, imgSize, err := r.GetRemoteImageJSON(id, endpoint, token)
- if err != nil {
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Error", "pulling dependend layers"))
- // FIXME: Keep going in case of error?
- return err
- }
- img, err := NewImgJSON(imgJSON)
- if err != nil {
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Error", "pulling dependend layers"))
- return fmt.Errorf("Failed to parse json: %s", err)
- }
- // Get the layer
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Pulling", "fs layer"))
- layer, err := r.GetRemoteImageLayer(img.ID, endpoint, token)
- if err != nil {
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Error", "pulling dependend layers"))
- return err
- }
- defer layer.Close()
- if err := srv.runtime.graph.Register(imgJSON, utils.ProgressReader(layer, imgSize, out, sf.FormatProgress(utils.TruncateID(id), "Downloading", "%8v/%v (%v)"), sf, false), img); err != nil {
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Error", "downloading dependend layers"))
- return err
- }
- }
- out.Write(sf.FormatProgress(utils.TruncateID(id), "Download", "complete"))
- }
- return nil
- }
- func (srv *Server) pullRepository(r *registry.Registry, out io.Writer, localName, remoteName, askedTag, indexEp string, sf *utils.StreamFormatter, parallel bool) error {
- out.Write(sf.FormatStatus("", "Pulling repository %s", localName))
- repoData, err := r.GetRepositoryData(indexEp, remoteName)
- if err != nil {
- return err
- }
- utils.Debugf("Retrieving the tag list")
- tagsList, err := r.GetRemoteTags(repoData.Endpoints, remoteName, repoData.Tokens)
- if err != nil {
- utils.Errorf("%v", err)
- return err
- }
- for tag, id := range tagsList {
- repoData.ImgList[id] = ®istry.ImgData{
- ID: id,
- Tag: tag,
- Checksum: "",
- }
- }
- utils.Debugf("Registering tags")
- // If no tag has been specified, pull them all
- if askedTag == "" {
- for tag, id := range tagsList {
- repoData.ImgList[id].Tag = tag
- }
- } else {
- // Otherwise, check that the tag exists and use only that one
- id, exists := tagsList[askedTag]
- if !exists {
- return fmt.Errorf("Tag %s not found in repository %s", askedTag, localName)
- }
- repoData.ImgList[id].Tag = askedTag
- }
- errors := make(chan error)
- for _, image := range repoData.ImgList {
- downloadImage := func(img *registry.ImgData) {
- if askedTag != "" && img.Tag != askedTag {
- utils.Debugf("(%s) does not match %s (id: %s), skipping", img.Tag, askedTag, img.ID)
- if parallel {
- errors <- nil
- }
- return
- }
- if img.Tag == "" {
- utils.Debugf("Image (id: %s) present in this repository but untagged, skipping", img.ID)
- if parallel {
- errors <- nil
- }
- return
- }
- // ensure no two downloads of the same image happen at the same time
- if err := srv.poolAdd("pull", "img:"+img.ID); err != nil {
- utils.Errorf("Image (id: %s) pull is already running, skipping: %v", img.ID, err)
- if parallel {
- errors <- nil
- }
- return
- }
- defer srv.poolRemove("pull", "img:"+img.ID)
- out.Write(sf.FormatProgress(utils.TruncateID(img.ID), "Pulling", fmt.Sprintf("image (%s) from %s", img.Tag, localName)))
- success := false
- var lastErr error
- for _, ep := range repoData.Endpoints {
- out.Write(sf.FormatProgress(utils.TruncateID(img.ID), "Pulling", fmt.Sprintf("image (%s) from %s, endpoint: %s", img.Tag, localName, ep)))
- if err := srv.pullImage(r, out, img.ID, ep, repoData.Tokens, sf); err != nil {
- // Its not ideal that only the last error is returned, it would be better to concatenate the errors.
- // As the error is also given to the output stream the user will see the error.
- lastErr = err
- out.Write(sf.FormatProgress(utils.TruncateID(img.ID), "Error pulling", fmt.Sprintf("image (%s) from %s, endpoint: %s, %s", img.Tag, localName, ep, err)))
- continue
- }
- success = true
- break
- }
- if !success {
- out.Write(sf.FormatProgress(utils.TruncateID(img.ID), "Error pulling", fmt.Sprintf("image (%s) from %s, %s", img.Tag, localName, lastErr)))
- if parallel {
- errors <- fmt.Errorf("Could not find repository on any of the indexed registries.")
- return
- }
- }
- out.Write(sf.FormatProgress(utils.TruncateID(img.ID), "Download", "complete"))
- if parallel {
- errors <- nil
- }
- }
- if parallel {
- go downloadImage(image)
- } else {
- downloadImage(image)
- }
- }
- if parallel {
- var lastError error
- for i := 0; i < len(repoData.ImgList); i++ {
- if err := <-errors; err != nil {
- lastError = err
- }
- }
- if lastError != nil {
- return lastError
- }
- }
- for tag, id := range tagsList {
- if askedTag != "" && tag != askedTag {
- continue
- }
- if err := srv.runtime.repositories.Set(localName, tag, id, true); err != nil {
- return err
- }
- }
- if err := srv.runtime.repositories.Save(); err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) poolAdd(kind, key string) error {
- srv.Lock()
- defer srv.Unlock()
- if _, exists := srv.pullingPool[key]; exists {
- return fmt.Errorf("pull %s is already in progress", key)
- }
- if _, exists := srv.pushingPool[key]; exists {
- return fmt.Errorf("push %s is already in progress", key)
- }
- switch kind {
- case "pull":
- srv.pullingPool[key] = struct{}{}
- break
- case "push":
- srv.pushingPool[key] = struct{}{}
- break
- default:
- return fmt.Errorf("Unknown pool type")
- }
- return nil
- }
- func (srv *Server) poolRemove(kind, key string) error {
- switch kind {
- case "pull":
- delete(srv.pullingPool, key)
- break
- case "push":
- delete(srv.pushingPool, key)
- break
- default:
- return fmt.Errorf("Unknown pool type")
- }
- return nil
- }
- func (srv *Server) ImagePull(localName string, tag string, out io.Writer, sf *utils.StreamFormatter, authConfig *auth.AuthConfig, metaHeaders map[string][]string, parallel bool) error {
- r, err := registry.NewRegistry(srv.runtime.root, authConfig, srv.HTTPRequestFactory(metaHeaders))
- if err != nil {
- return err
- }
- if err := srv.poolAdd("pull", localName+":"+tag); err != nil {
- return err
- }
- defer srv.poolRemove("pull", localName+":"+tag)
- // Resolve the Repository name from fqn to endpoint + name
- endpoint, remoteName, err := registry.ResolveRepositoryName(localName)
- if err != nil {
- return err
- }
- if endpoint == auth.IndexServerAddress() {
- // If pull "index.docker.io/foo/bar", it's stored locally under "foo/bar"
- localName = remoteName
- }
- out = utils.NewWriteFlusher(out)
- err = srv.pullRepository(r, out, localName, remoteName, tag, endpoint, sf, parallel)
- if err == registry.ErrLoginRequired {
- return err
- }
- if err != nil {
- if err := srv.pullImage(r, out, remoteName, endpoint, nil, sf); err != nil {
- return err
- }
- return nil
- }
- return nil
- }
- // Retrieve the all the images to be uploaded in the correct order
- // Note: we can't use a map as it is not ordered
- func (srv *Server) getImageList(localRepo map[string]string) ([][]*registry.ImgData, error) {
- imgList := map[string]*registry.ImgData{}
- depGraph := utils.NewDependencyGraph()
- for tag, id := range localRepo {
- img, err := srv.runtime.graph.Get(id)
- if err != nil {
- return nil, err
- }
- depGraph.NewNode(img.ID)
- img.WalkHistory(func(current *Image) error {
- imgList[current.ID] = ®istry.ImgData{
- ID: current.ID,
- Tag: tag,
- }
- parent, err := current.GetParent()
- if err != nil {
- return err
- }
- if parent == nil {
- return nil
- }
- depGraph.NewNode(parent.ID)
- depGraph.AddDependency(current.ID, parent.ID)
- return nil
- })
- }
- traversalMap, err := depGraph.GenerateTraversalMap()
- if err != nil {
- return nil, err
- }
- utils.Debugf("Traversal map: %v", traversalMap)
- result := [][]*registry.ImgData{}
- for _, round := range traversalMap {
- dataRound := []*registry.ImgData{}
- for _, imgID := range round {
- dataRound = append(dataRound, imgList[imgID])
- }
- result = append(result, dataRound)
- }
- return result, nil
- }
- func flatten(slc [][]*registry.ImgData) []*registry.ImgData {
- result := []*registry.ImgData{}
- for _, x := range slc {
- result = append(result, x...)
- }
- return result
- }
- func (srv *Server) pushRepository(r *registry.Registry, out io.Writer, localName, remoteName string, localRepo map[string]string, indexEp string, sf *utils.StreamFormatter) error {
- out = utils.NewWriteFlusher(out)
- imgList, err := srv.getImageList(localRepo)
- if err != nil {
- return err
- }
- flattenedImgList := flatten(imgList)
- out.Write(sf.FormatStatus("", "Sending image list"))
- var repoData *registry.RepositoryData
- repoData, err = r.PushImageJSONIndex(indexEp, remoteName, flattenedImgList, false, nil)
- if err != nil {
- return err
- }
- for _, ep := range repoData.Endpoints {
- out.Write(sf.FormatStatus("", "Pushing repository %s (%d tags)", localName, len(localRepo)))
- // This section can not be parallelized (each round depends on the previous one)
- for _, round := range imgList {
- // FIXME: This section can be parallelized
- for _, elem := range round {
- var pushTags func() error
- pushTags = func() error {
- out.Write(sf.FormatStatus("", "Pushing tags for rev [%s] on {%s}", elem.ID, ep+"repositories/"+remoteName+"/tags/"+elem.Tag))
- if err := r.PushRegistryTag(remoteName, elem.ID, elem.Tag, ep, repoData.Tokens); err != nil {
- return err
- }
- return nil
- }
- if _, exists := repoData.ImgList[elem.ID]; exists {
- if err := pushTags(); err != nil {
- return err
- }
- out.Write(sf.FormatStatus("", "Image %s already pushed, skipping", elem.ID))
- continue
- } else if r.LookupRemoteImage(elem.ID, ep, repoData.Tokens) {
- if err := pushTags(); err != nil {
- return err
- }
- out.Write(sf.FormatStatus("", "Image %s already pushed, skipping", elem.ID))
- continue
- }
- if checksum, err := srv.pushImage(r, out, remoteName, elem.ID, ep, repoData.Tokens, sf); err != nil {
- // FIXME: Continue on error?
- return err
- } else {
- elem.Checksum = checksum
- }
- if err := pushTags(); err != nil {
- return err
- }
- }
- }
- }
- if _, err := r.PushImageJSONIndex(indexEp, remoteName, flattenedImgList, true, repoData.Endpoints); err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) pushImage(r *registry.Registry, out io.Writer, remote, imgID, ep string, token []string, sf *utils.StreamFormatter) (checksum string, err error) {
- out = utils.NewWriteFlusher(out)
- jsonRaw, err := ioutil.ReadFile(path.Join(srv.runtime.graph.Root, imgID, "json"))
- if err != nil {
- return "", fmt.Errorf("Error while retrieving the path for {%s}: %s", imgID, err)
- }
- out.Write(sf.FormatStatus("", "Pushing %s", imgID))
- imgData := ®istry.ImgData{
- ID: imgID,
- }
- // Send the json
- if err := r.PushImageJSONRegistry(imgData, jsonRaw, ep, token); err != nil {
- if err == registry.ErrAlreadyExists {
- out.Write(sf.FormatStatus("", "Image %s already pushed, skipping", imgData.ID))
- return "", nil
- }
- return "", err
- }
- layerData, err := srv.runtime.graph.TempLayerArchive(imgID, Uncompressed, sf, out)
- if err != nil {
- return "", fmt.Errorf("Failed to generate layer archive: %s", err)
- }
- // Send the layer
- if checksum, err := r.PushImageLayerRegistry(imgData.ID, utils.ProgressReader(layerData, int(layerData.Size), out, sf.FormatProgress("", "Pushing", "%8v/%v (%v)"), sf, false), ep, token, jsonRaw); err != nil {
- return "", err
- } else {
- imgData.Checksum = checksum
- }
- out.Write(sf.FormatStatus("", ""))
- // Send the checksum
- if err := r.PushImageChecksumRegistry(imgData, ep, token); err != nil {
- return "", err
- }
- return imgData.Checksum, nil
- }
- // FIXME: Allow to interrupt current push when new push of same image is done.
- func (srv *Server) ImagePush(localName string, out io.Writer, sf *utils.StreamFormatter, authConfig *auth.AuthConfig, metaHeaders map[string][]string) error {
- if err := srv.poolAdd("push", localName); err != nil {
- return err
- }
- defer srv.poolRemove("push", localName)
- // Resolve the Repository name from fqn to endpoint + name
- endpoint, remoteName, err := registry.ResolveRepositoryName(localName)
- if err != nil {
- return err
- }
- out = utils.NewWriteFlusher(out)
- img, err := srv.runtime.graph.Get(localName)
- r, err2 := registry.NewRegistry(srv.runtime.root, authConfig, srv.HTTPRequestFactory(metaHeaders))
- if err2 != nil {
- return err2
- }
- if err != nil {
- reposLen := len(srv.runtime.repositories.Repositories[localName])
- out.Write(sf.FormatStatus("", "The push refers to a repository [%s] (len: %d)", localName, reposLen))
- // If it fails, try to get the repository
- if localRepo, exists := srv.runtime.repositories.Repositories[localName]; exists {
- if err := srv.pushRepository(r, out, localName, remoteName, localRepo, endpoint, sf); err != nil {
- return err
- }
- return nil
- }
- return err
- }
- var token []string
- out.Write(sf.FormatStatus("", "The push refers to an image: [%s]", localName))
- if _, err := srv.pushImage(r, out, remoteName, img.ID, endpoint, token, sf); err != nil {
- return err
- }
- return nil
- }
- func (srv *Server) ImageImport(src, repo, tag string, in io.Reader, out io.Writer, sf *utils.StreamFormatter) error {
- var archive io.Reader
- var resp *http.Response
- if src == "-" {
- archive = in
- } else {
- u, err := url.Parse(src)
- if err != nil {
- return err
- }
- if u.Scheme == "" {
- u.Scheme = "http"
- u.Host = src
- u.Path = ""
- }
- out.Write(sf.FormatStatus("", "Downloading from %s", u))
- // Download with curl (pretty progress bar)
- // If curl is not available, fallback to http.Get()
- resp, err = utils.Download(u.String(), out)
- if err != nil {
- return err
- }
- archive = utils.ProgressReader(resp.Body, int(resp.ContentLength), out, sf.FormatProgress("", "Importing", "%8v/%v (%v)"), sf, true)
- }
- img, err := srv.runtime.graph.Create(archive, nil, "Imported from "+src, "", nil)
- if err != nil {
- return err
- }
- // Optionally register the image at REPO/TAG
- if repo != "" {
- if err := srv.runtime.repositories.Set(repo, tag, img.ID, true); err != nil {
- return err
- }
- }
- out.Write(sf.FormatStatus("", img.ShortID()))
- return nil
- }
- func (srv *Server) ContainerCreate(config *Config) (string, error) {
- if config.Memory != 0 && config.Memory < 524288 {
- return "", fmt.Errorf("Memory limit must be given in bytes (minimum 524288 bytes)")
- }
- if config.Memory > 0 && !srv.runtime.capabilities.MemoryLimit {
- config.Memory = 0
- }
- if config.Memory > 0 && !srv.runtime.capabilities.SwapLimit {
- config.MemorySwap = -1
- }
- container, err := srv.runtime.Create(config)
- if err != nil {
- if srv.runtime.graph.IsNotExist(err) {
- _, tag := utils.ParseRepositoryTag(config.Image)
- if tag == "" {
- tag = DEFAULTTAG
- }
- return "", fmt.Errorf("No such image: %s (tag: %s)", config.Image, tag)
- }
- return "", err
- }
- srv.LogEvent("create", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- return container.ShortID(), nil
- }
- func (srv *Server) ContainerRestart(name string, t int) error {
- if container := srv.runtime.Get(name); container != nil {
- if err := container.Restart(t); err != nil {
- return fmt.Errorf("Error restarting container %s: %s", name, err)
- }
- srv.LogEvent("restart", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- return nil
- }
- func (srv *Server) ContainerDestroy(name string, removeVolume bool) error {
- if container := srv.runtime.Get(name); container != nil {
- if container.State.Running {
- return fmt.Errorf("Impossible to remove a running container, please stop it first")
- }
- volumes := make(map[string]struct{})
- // Store all the deleted containers volumes
- for _, volumeId := range container.Volumes {
- volumeId = strings.TrimRight(volumeId, "/layer")
- volumeId = filepath.Base(volumeId)
- volumes[volumeId] = struct{}{}
- }
- if err := srv.runtime.Destroy(container); err != nil {
- return fmt.Errorf("Error destroying container %s: %s", name, err)
- }
- srv.LogEvent("destroy", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- if removeVolume {
- // Retrieve all volumes from all remaining containers
- usedVolumes := make(map[string]*Container)
- for _, container := range srv.runtime.List() {
- for _, containerVolumeId := range container.Volumes {
- usedVolumes[containerVolumeId] = container
- }
- }
- for volumeId := range volumes {
- // If the requested volu
- if c, exists := usedVolumes[volumeId]; exists {
- log.Printf("The volume %s is used by the container %s. Impossible to remove it. Skipping.\n", volumeId, c.ID)
- continue
- }
- if err := srv.runtime.volumes.Delete(volumeId); err != nil {
- return err
- }
- }
- }
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- return nil
- }
- var ErrImageReferenced = errors.New("Image referenced by a repository")
- func (srv *Server) getChildImages(id string) ([]*Image, error) {
- byParents, err := srv.runtime.graph.ByParent()
- if err != nil {
- return nil, err
- }
- return byParents[id], nil
- }
- func (srv *Server) deleteImageAndChildren(id string, imgs *[]APIRmi) error {
- // If the image is referenced by a repo, do not delete
- if len(srv.runtime.repositories.ByID()[id]) != 0 {
- return ErrImageReferenced
- }
- // If the image is not referenced but has children, go recursive
- referenced := false
- byParents, err := srv.runtime.graph.ByParent()
- if err != nil {
- return err
- }
- for _, img := range byParents[id] {
- if err := srv.deleteImageAndChildren(img.ID, imgs); err != nil {
- if err != ErrImageReferenced {
- return err
- }
- referenced = true
- }
- }
- if referenced {
- return ErrImageReferenced
- }
- // If the image is not referenced and has no children, remove it
- byParents, err = srv.runtime.graph.ByParent()
- if err != nil {
- return err
- }
- if len(byParents[id]) == 0 {
- if err := srv.runtime.repositories.DeleteAll(id); err != nil {
- return err
- }
- err := srv.runtime.DeleteImage(id)
- if err != nil {
- return err
- }
- *imgs = append(*imgs, APIRmi{Deleted: utils.TruncateID(id)})
- srv.LogEvent("delete", utils.TruncateID(id), "")
- return nil
- }
- return nil
- }
- func (srv *Server) deleteImageParents(img *Image, imgs *[]APIRmi) error {
- if img.Parent != "" {
- parent, err := srv.runtime.graph.Get(img.Parent)
- if err != nil {
- return err
- }
- // Remove all children images
- if err := srv.deleteImageAndChildren(img.Parent, imgs); err != nil {
- return err
- }
- return srv.deleteImageParents(parent, imgs)
- }
- return nil
- }
- func (srv *Server) deleteImage(img *Image, repoName, tag string) ([]APIRmi, error) {
- imgs := []APIRmi{}
- //If delete by id, see if the id belong only to one repository
- if strings.Contains(img.ID, repoName) && tag == "" {
- for _, repoAndTag := range srv.runtime.repositories.ByID()[img.ID] {
- parsedRepo, parsedTag := utils.ParseRepositoryTag(repoAndTag)
- if strings.Contains(img.ID, repoName) {
- repoName = parsedRepo
- if len(srv.runtime.repositories.ByID()[img.ID]) == 1 && len(parsedTag) > 1 {
- tag = parsedTag
- }
- } else if repoName != parsedRepo {
- // the id belongs to multiple repos, like base:latest and user:test,
- // in that case return conflict
- return imgs, nil
- }
- }
- }
- //Untag the current image
- tagDeleted, err := srv.runtime.repositories.Delete(repoName, tag)
- if err != nil {
- return nil, err
- }
- if tagDeleted {
- imgs = append(imgs, APIRmi{Untagged: img.ShortID()})
- srv.LogEvent("untag", img.ShortID(), "")
- }
- if len(srv.runtime.repositories.ByID()[img.ID]) == 0 {
- if err := srv.deleteImageAndChildren(img.ID, &imgs); err != nil {
- if err != ErrImageReferenced {
- return imgs, err
- }
- } else if err := srv.deleteImageParents(img, &imgs); err != nil {
- if err != ErrImageReferenced {
- return imgs, err
- }
- }
- }
- return imgs, nil
- }
- func (srv *Server) ImageDelete(name string, autoPrune bool) ([]APIRmi, error) {
- img, err := srv.runtime.repositories.LookupImage(name)
- if err != nil {
- return nil, fmt.Errorf("No such image: %s", name)
- }
- images := make(map[string]bool)
- images[img.ID] = true
- children, err := srv.getChildImages(img.ID)
- if err != nil {
- return nil, err
- }
- for _, i := range children {
- images[i.ID] = true
- }
- // Check for any containers referencing the image or children of the image
- referencedContainers := []string{}
- for e := srv.runtime.containers.Front(); e != nil; e = e.Next() {
- c := e.Value.(*Container)
- if images[c.Image] {
- referencedContainers = append(referencedContainers, c.ID)
- }
- }
- if len(referencedContainers) > 0 {
- return nil, fmt.Errorf("Cannot delete image with existing containers. Please remove %s before deleting image.",
- strings.Join(referencedContainers, ", "))
- }
- if !autoPrune {
- if err := srv.runtime.DeleteImage(img.ID); err != nil {
- return nil, fmt.Errorf("Error deleting image %s: %s", name, err)
- }
- return nil, nil
- }
- name, tag := utils.ParseRepositoryTag(name)
- return srv.deleteImage(img, name, tag)
- }
- func (srv *Server) ImageGetCached(imgID string, config *Config) (*Image, error) {
- // Retrieve all images
- images, err := srv.runtime.graph.Map()
- if err != nil {
- return nil, err
- }
- // Store the tree in a map of map (map[parentId][childId])
- imageMap := make(map[string]map[string]struct{})
- for _, img := range images {
- if _, exists := imageMap[img.Parent]; !exists {
- imageMap[img.Parent] = make(map[string]struct{})
- }
- imageMap[img.Parent][img.ID] = struct{}{}
- }
- // Loop on the children of the given image and check the config
- for elem := range imageMap[imgID] {
- img, err := srv.runtime.graph.Get(elem)
- if err != nil {
- return nil, err
- }
- if CompareConfig(&img.ContainerConfig, config) {
- return img, nil
- }
- }
- return nil, nil
- }
- func (srv *Server) ContainerStart(name string, hostConfig *HostConfig) error {
- if container := srv.runtime.Get(name); container != nil {
- if err := container.Start(hostConfig); err != nil {
- return fmt.Errorf("Error starting container %s: %s", name, err)
- }
- srv.LogEvent("start", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- return nil
- }
- func (srv *Server) ContainerStop(name string, t int) error {
- if container := srv.runtime.Get(name); container != nil {
- if err := container.Stop(t); err != nil {
- return fmt.Errorf("Error stopping container %s: %s", name, err)
- }
- srv.LogEvent("stop", container.ShortID(), srv.runtime.repositories.ImageName(container.Image))
- } else {
- return fmt.Errorf("No such container: %s", name)
- }
- return nil
- }
- func (srv *Server) ContainerWait(name string) (int, error) {
- if container := srv.runtime.Get(name); container != nil {
- return container.Wait(), nil
- }
- return 0, fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) ContainerResize(name string, h, w int) error {
- if container := srv.runtime.Get(name); container != nil {
- return container.Resize(h, w)
- }
- return fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) ContainerAttach(name string, logs, stream, stdin, stdout, stderr bool, inStream io.ReadCloser, outStream, errStream io.Writer) error {
- container := srv.runtime.Get(name)
- if container == nil {
- return fmt.Errorf("No such container: %s", name)
- }
- //logs
- if logs {
- cLog, err := container.ReadLog("json")
- if err != nil && os.IsNotExist(err) {
- // Legacy logs
- utils.Errorf("Old logs format")
- if stdout {
- cLog, err := container.ReadLog("stdout")
- if err != nil {
- utils.Errorf("Error reading logs (stdout): %s", err)
- } else if _, err := io.Copy(outStream, cLog); err != nil {
- utils.Errorf("Error streaming logs (stdout): %s", err)
- }
- }
- if stderr {
- cLog, err := container.ReadLog("stderr")
- if err != nil {
- utils.Errorf("Error reading logs (stderr): %s", err)
- } else if _, err := io.Copy(errStream, cLog); err != nil {
- utils.Errorf("Error streaming logs (stderr): %s", err)
- }
- }
- } else if err != nil {
- utils.Errorf("Error reading logs (json): %s", err)
- } else {
- dec := json.NewDecoder(cLog)
- for {
- l := &utils.JSONLog{}
- if err := dec.Decode(l); err == io.EOF {
- break
- } else if err != nil {
- utils.Errorf("Error streaming logs: %s", err)
- break
- }
- if l.Stream == "stdout" && stdout {
- fmt.Fprintf(outStream, "%s", l.Log)
- }
- if l.Stream == "stderr" && stderr {
- fmt.Fprintf(errStream, "%s", l.Log)
- }
- }
- }
- }
- //stream
- if stream {
- if container.State.Ghost {
- return fmt.Errorf("Impossible to attach to a ghost container")
- }
- var (
- cStdin io.ReadCloser
- cStdout, cStderr io.Writer
- cStdinCloser io.Closer
- )
- if stdin {
- r, w := io.Pipe()
- go func() {
- defer w.Close()
- defer utils.Debugf("Closing buffered stdin pipe")
- io.Copy(w, inStream)
- }()
- cStdin = r
- cStdinCloser = inStream
- }
- if stdout {
- cStdout = outStream
- }
- if stderr {
- cStderr = errStream
- }
- <-container.Attach(cStdin, cStdinCloser, cStdout, cStderr)
- // If we are in stdinonce mode, wait for the process to end
- // otherwise, simply return
- if container.Config.StdinOnce && !container.Config.Tty {
- container.Wait()
- }
- }
- return nil
- }
- func (srv *Server) ContainerInspect(name string) (*Container, error) {
- if container := srv.runtime.Get(name); container != nil {
- return container, nil
- }
- return nil, fmt.Errorf("No such container: %s", name)
- }
- func (srv *Server) ImageInspect(name string) (*Image, error) {
- if image, err := srv.runtime.repositories.LookupImage(name); err == nil && image != nil {
- return image, nil
- }
- return nil, fmt.Errorf("No such image: %s", name)
- }
- func (srv *Server) ContainerCopy(name string, resource string, out io.Writer) error {
- if container := srv.runtime.Get(name); container != nil {
- data, err := container.Copy(resource)
- if err != nil {
- return err
- }
- if _, err := io.Copy(out, data); err != nil {
- return err
- }
- return nil
- }
- return fmt.Errorf("No such container: %s", name)
- }
- func NewServer(flGraphPath string, autoRestart, enableCors bool, dns ListOpts) (*Server, error) {
- if runtime.GOARCH != "amd64" {
- log.Fatalf("The docker runtime currently only supports amd64 (not %s). This will change in the future. Aborting.", runtime.GOARCH)
- }
- runtime, err := NewRuntime(flGraphPath, autoRestart, dns)
- if err != nil {
- return nil, err
- }
- runtime.srv = &Server{
- runtime: runtime,
- enableCors: enableCors,
- pullingPool: make(map[string]struct{}),
- pushingPool: make(map[string]struct{}),
- events: make([]utils.JSONMessage, 0, 64), //only keeps the 64 last events
- listeners: make(map[string]chan utils.JSONMessage),
- reqFactory: nil,
- }
- return runtime.srv, nil
- }
- func (srv *Server) HTTPRequestFactory(metaHeaders map[string][]string) *utils.HTTPRequestFactory {
- if srv.reqFactory == nil {
- srv.reqFactory = utils.NewHTTPRequestFactory(
- utils.NewHTTPUserAgentDecorator(srv.versionInfos()...),
- &utils.HTTPMetaHeadersDecorator{Headers: metaHeaders})
- }
- return srv.reqFactory
- }
- func (srv *Server) LogEvent(action, id, from string) {
- now := time.Now().Unix()
- jm := utils.JSONMessage{Status: action, ID: id, From: from, Time: now}
- srv.events = append(srv.events, jm)
- for _, c := range srv.listeners {
- select { // non blocking channel
- case c <- jm:
- default:
- }
- }
- }
- type Server struct {
- sync.Mutex
- runtime *Runtime
- enableCors bool
- pullingPool map[string]struct{}
- pushingPool map[string]struct{}
- events []utils.JSONMessage
- listeners map[string]chan utils.JSONMessage
- reqFactory *utils.HTTPRequestFactory
- }
|