| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 | 
							- // Copyright 2014 The Gogs Authors. All rights reserved.
 
- // Use of this source code is governed by a MIT-style
 
- // license that can be found in the LICENSE file.
 
- package models
 
- import (
 
- 	"bufio"
 
- 	"errors"
 
- 	"fmt"
 
- 	"io"
 
- 	"io/ioutil"
 
- 	"os"
 
- 	"os/exec"
 
- 	"path"
 
- 	"path/filepath"
 
- 	"strings"
 
- 	"sync"
 
- 	"time"
 
- 	"github.com/Unknwon/com"
 
- 	qlog "github.com/qiniu/log"
 
- 	"github.com/gogits/gogs/modules/log"
 
- )
 
- const (
 
- 	// "### autogenerated by gitgos, DO NOT EDIT\n"
 
- 	_TPL_PUBLICK_KEY = `command="%s serv key-%d",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s` + "\n"
 
- )
 
- var (
 
- 	ErrKeyAlreadyExist = errors.New("Public key already exist")
 
- 	ErrKeyNotExist     = errors.New("Public key does not exist")
 
- )
 
- var sshOpLocker = sync.Mutex{}
 
- var (
 
- 	sshPath string // SSH directory.
 
- 	appPath string // Execution(binary) path.
 
- )
 
- // exePath returns the executable path.
 
- func exePath() (string, error) {
 
- 	file, err := exec.LookPath(os.Args[0])
 
- 	if err != nil {
 
- 		return "", err
 
- 	}
 
- 	return filepath.Abs(file)
 
- }
 
- // homeDir returns the home directory of current user.
 
- func homeDir() string {
 
- 	home, err := com.HomeDir()
 
- 	if err != nil {
 
- 		qlog.Fatalln(err)
 
- 	}
 
- 	return home
 
- }
 
- func init() {
 
- 	var err error
 
- 	if appPath, err = exePath(); err != nil {
 
- 		qlog.Fatalf("publickey.init(fail to get app path): %v\n", err)
 
- 	}
 
- 	// Determine and create .ssh path.
 
- 	sshPath = filepath.Join(homeDir(), ".ssh")
 
- 	if err = os.MkdirAll(sshPath, os.ModePerm); err != nil {
 
- 		qlog.Fatalf("publickey.init(fail to create sshPath(%s)): %v\n", sshPath, err)
 
- 	}
 
- }
 
- // PublicKey represents a SSH key.
 
- type PublicKey struct {
 
- 	Id          int64
 
- 	OwnerId     int64  `xorm:"UNIQUE(s) INDEX NOT NULL"`
 
- 	Name        string `xorm:"UNIQUE(s) NOT NULL"`
 
- 	Fingerprint string
 
- 	Content     string    `xorm:"TEXT NOT NULL"`
 
- 	Created     time.Time `xorm:"CREATED"`
 
- 	Updated     time.Time `xorm:"UPDATED"`
 
- }
 
- // GetAuthorizedString generates and returns formatted public key string for authorized_keys file.
 
- func (key *PublicKey) GetAuthorizedString() string {
 
- 	return fmt.Sprintf(_TPL_PUBLICK_KEY, appPath, key.Id, key.Content)
 
- }
 
- // saveAuthorizedKeyFile writes SSH key content to authorized_keys file.
 
- func saveAuthorizedKeyFile(key *PublicKey) error {
 
- 	sshOpLocker.Lock()
 
- 	defer sshOpLocker.Unlock()
 
- 	fpath := filepath.Join(sshPath, "authorized_keys")
 
- 	f, err := os.OpenFile(fpath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	defer f.Close()
 
- 	_, err = f.WriteString(key.GetAuthorizedString())
 
- 	return err
 
- }
 
- // AddPublicKey adds new public key to database and authorized_keys file.
 
- func AddPublicKey(key *PublicKey) (err error) {
 
- 	has, err := orm.Get(key)
 
- 	if err != nil {
 
- 		return err
 
- 	} else if has {
 
- 		return ErrKeyAlreadyExist
 
- 	}
 
- 	// Calculate fingerprint.
 
- 	tmpPath := strings.Replace(path.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()),
 
- 		"id_rsa.pub"), "\\", "/", -1)
 
- 	os.MkdirAll(path.Dir(tmpPath), os.ModePerm)
 
- 	if err = ioutil.WriteFile(tmpPath, []byte(key.Content), os.ModePerm); err != nil {
 
- 		return err
 
- 	}
 
- 	stdout, stderr, err := com.ExecCmd("ssh-keygen", "-l", "-f", tmpPath)
 
- 	if err != nil {
 
- 		return errors.New("ssh-keygen -l -f: " + stderr)
 
- 	} else if len(stdout) < 2 {
 
- 		return errors.New("Not enough output for calculating fingerprint")
 
- 	}
 
- 	key.Fingerprint = strings.Split(stdout, " ")[1]
 
- 	// Save SSH key.
 
- 	if _, err = orm.Insert(key); err != nil {
 
- 		return err
 
- 	} else if err = saveAuthorizedKeyFile(key); err != nil {
 
- 		// Roll back.
 
- 		if _, err2 := orm.Delete(key); err2 != nil {
 
- 			return err2
 
- 		}
 
- 		return err
 
- 	}
 
- 	return nil
 
- }
 
- // ListPublicKey returns a list of all public keys that user has.
 
- func ListPublicKey(uid int64) ([]PublicKey, error) {
 
- 	keys := make([]PublicKey, 0, 5)
 
- 	err := orm.Find(&keys, &PublicKey{OwnerId: uid})
 
- 	return keys, err
 
- }
 
- // rewriteAuthorizedKeys finds and deletes corresponding line in authorized_keys file.
 
- func rewriteAuthorizedKeys(key *PublicKey, p, tmpP string) error {
 
- 	sshOpLocker.Lock()
 
- 	defer sshOpLocker.Unlock()
 
- 	fr, err := os.Open(p)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	defer fr.Close()
 
- 	fw, err := os.Create(tmpP)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	defer fw.Close()
 
- 	isFound := false
 
- 	keyword := fmt.Sprintf("key-%d", key.Id)
 
- 	buf := bufio.NewReader(fr)
 
- 	for {
 
- 		line, errRead := buf.ReadString('\n')
 
- 		line = strings.TrimSpace(line)
 
- 		if errRead != nil {
 
- 			if errRead != io.EOF {
 
- 				return errRead
 
- 			}
 
- 			// Reached end of file, if nothing to read then break,
 
- 			// otherwise handle the last line.
 
- 			if len(line) == 0 {
 
- 				break
 
- 			}
 
- 		}
 
- 		// Found the line and copy rest of file.
 
- 		if !isFound && strings.Contains(line, keyword) && strings.Contains(line, key.Content) {
 
- 			isFound = true
 
- 			continue
 
- 		}
 
- 		// Still finding the line, copy the line that currently read.
 
- 		if _, err = fw.WriteString(line + "\n"); err != nil {
 
- 			return err
 
- 		}
 
- 		if errRead == io.EOF {
 
- 			break
 
- 		}
 
- 	}
 
- 	return nil
 
- }
 
- // DeletePublicKey deletes SSH key information both in database and authorized_keys file.
 
- func DeletePublicKey(key *PublicKey) error {
 
- 	has, err := orm.Get(key)
 
- 	if err != nil {
 
- 		return err
 
- 	} else if !has {
 
- 		return ErrKeyNotExist
 
- 	}
 
- 	if _, err = orm.Delete(key); err != nil {
 
- 		return err
 
- 	}
 
- 	fpath := filepath.Join(sshPath, "authorized_keys")
 
- 	tmpPath := filepath.Join(sshPath, "authorized_keys.tmp")
 
- 	log.Trace("publickey.DeletePublicKey(authorized_keys): %s", fpath)
 
- 	if err = rewriteAuthorizedKeys(key, fpath, tmpPath); err != nil {
 
- 		return err
 
- 	} else if err = os.Remove(fpath); err != nil {
 
- 		return err
 
- 	}
 
- 	return os.Rename(tmpPath, fpath)
 
- }
 
 
  |