| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- * Copyright (c) 2015, Psiphon Inc.
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package psiphon
- import (
- "database/sql"
- "encoding/json"
- "fmt"
- "os"
- "path/filepath"
- _ "github.com/Psiphon-Inc/go-sqlite3"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/protocol"
- )
- var legacyDb *sql.DB
- func prepareMigrationEntries(config *Config) []*protocol.ServerEntry {
- var migratableServerEntries []*protocol.ServerEntry
- // If DATA_STORE_FILENAME does not exist on disk
- if _, err := os.Stat(filepath.Join(config.DataStoreDirectory, DATA_STORE_FILENAME)); os.IsNotExist(err) {
- // If LEGACY_DATA_STORE_FILENAME exists on disk
- if _, err := os.Stat(filepath.Join(config.DataStoreDirectory, LEGACY_DATA_STORE_FILENAME)); err == nil {
- legacyDb, err = sql.Open("sqlite3", fmt.Sprintf("file:%s?cache=private&mode=rwc", filepath.Join(config.DataStoreDirectory, LEGACY_DATA_STORE_FILENAME)))
- defer legacyDb.Close()
- if err != nil {
- NoticeAlert("prepareMigrationEntries: sql.Open failed: %s", err)
- return nil
- }
- initialization := "pragma journal_mode=WAL;\n"
- _, err = legacyDb.Exec(initialization)
- if err != nil {
- NoticeAlert("prepareMigrationEntries: sql.DB.Exec failed: %s", err)
- return nil
- }
- iterator, err := newlegacyServerEntryIterator(config)
- if err != nil {
- NoticeAlert("prepareMigrationEntries: newlegacyServerEntryIterator failed: %s", err)
- return nil
- }
- defer iterator.Close()
- for {
- serverEntry, err := iterator.Next()
- if err != nil {
- NoticeAlert("prepareMigrationEntries: legacyServerEntryIterator.Next failed: %s", err)
- break
- }
- if serverEntry == nil {
- break
- }
- migratableServerEntries = append(migratableServerEntries, serverEntry)
- }
- NoticeInfo("%d server entries prepared for data store migration", len(migratableServerEntries))
- }
- }
- return migratableServerEntries
- }
- // migrateEntries calls the BoltDB data store method to shuffle
- // and store an array of server entries (StoreServerEntries)
- // Failing to migrate entries, or delete the legacy file is never fatal
- func migrateEntries(serverEntries []*protocol.ServerEntry, legacyDataStoreFilename string) {
- checkInitDataStore()
- err := StoreServerEntries(serverEntries, false)
- if err != nil {
- NoticeAlert("migrateEntries: StoreServerEntries failed: %s", err)
- } else {
- // Retain server affinity from old datastore by taking the first
- // array element (previous top ranked server) and promoting it
- // to the top rank before the server selection process begins
- err = PromoteServerEntry(serverEntries[0].IpAddress)
- if err != nil {
- NoticeAlert("migrateEntries: PromoteServerEntry failed: %s", err)
- }
- NoticeAlert("%d server entries successfully migrated to new data store", len(serverEntries))
- }
- err = os.Remove(legacyDataStoreFilename)
- if err != nil {
- NoticeAlert("migrateEntries: failed to delete legacy data store file '%s': %s", legacyDataStoreFilename, err)
- }
- return
- }
- // This code is copied from the dataStore.go code used to operate the legacy
- // SQLite datastore. The word "legacy" was added to all of the method names to avoid
- // namespace conflicts with the methods used to operate the BoltDB datastore
- // legacyServerEntryIterator is used to iterate over
- // stored server entries in rank order.
- type legacyServerEntryIterator struct {
- shuffleHeadLength int
- transaction *sql.Tx
- cursor *sql.Rows
- }
- // newLegacyServerEntryIterator creates a new legacyServerEntryIterator
- func newlegacyServerEntryIterator(config *Config) (iterator *legacyServerEntryIterator, err error) {
- iterator = &legacyServerEntryIterator{
- shuffleHeadLength: config.TunnelPoolSize,
- }
- err = iterator.Reset()
- if err != nil {
- return nil, err
- }
- return iterator, nil
- }
- // Close cleans up resources associated with a legacyServerEntryIterator.
- func (iterator *legacyServerEntryIterator) Close() {
- if iterator.cursor != nil {
- iterator.cursor.Close()
- }
- iterator.cursor = nil
- if iterator.transaction != nil {
- iterator.transaction.Rollback()
- }
- iterator.transaction = nil
- }
- // Next returns the next server entry, by rank, for a legacyServerEntryIterator.
- // Returns nil with no error when there is no next item.
- func (iterator *legacyServerEntryIterator) Next() (serverEntry *protocol.ServerEntry, err error) {
- defer func() {
- if err != nil {
- iterator.Close()
- }
- }()
- if !iterator.cursor.Next() {
- err = iterator.cursor.Err()
- if err != nil {
- return nil, common.ContextError(err)
- }
- // There is no next item
- return nil, nil
- }
- var data []byte
- err = iterator.cursor.Scan(&data)
- if err != nil {
- return nil, common.ContextError(err)
- }
- serverEntry = new(protocol.ServerEntry)
- err = json.Unmarshal(data, serverEntry)
- if err != nil {
- return nil, common.ContextError(err)
- }
- return MakeCompatibleServerEntry(serverEntry), nil
- }
- // Reset a NewlegacyServerEntryIterator to the start of its cycle. The next
- // call to Next will return the first server entry.
- func (iterator *legacyServerEntryIterator) Reset() error {
- iterator.Close()
- transaction, err := legacyDb.Begin()
- if err != nil {
- return common.ContextError(err)
- }
- var cursor *sql.Rows
- // This query implements the Psiphon server candidate selection
- // algorithm: the first TunnelPoolSize server candidates are in rank
- // (priority) order, to favor previously successful servers; then the
- // remaining long tail is shuffled to raise up less recent candidates.
- whereClause, whereParams := makeServerEntryWhereClause(nil)
- headLength := iterator.shuffleHeadLength
- queryFormat := `
- select data from serverEntry %s
- order by case
- when rank > coalesce((select rank from serverEntry %s order by rank desc limit ?, 1), -1) then rank
- else abs(random())%%((select rank from serverEntry %s order by rank desc limit ?, 1))
- end desc;`
- query := fmt.Sprintf(queryFormat, whereClause, whereClause, whereClause)
- params := make([]interface{}, 0)
- params = append(params, whereParams...)
- params = append(params, whereParams...)
- params = append(params, headLength)
- params = append(params, whereParams...)
- params = append(params, headLength)
- cursor, err = transaction.Query(query, params...)
- if err != nil {
- transaction.Rollback()
- return common.ContextError(err)
- }
- iterator.transaction = transaction
- iterator.cursor = cursor
- return nil
- }
- func makeServerEntryWhereClause(excludeIds []string) (whereClause string, whereParams []interface{}) {
- whereClause = ""
- whereParams = make([]interface{}, 0)
- if len(excludeIds) > 0 {
- if len(whereClause) > 0 {
- whereClause += " and"
- } else {
- whereClause += " where"
- }
- whereClause += " id in ("
- for index, id := range excludeIds {
- if index > 0 {
- whereClause += ", "
- }
- whereClause += "?"
- whereParams = append(whereParams, id)
- }
- whereClause += ")"
- }
- return whereClause, whereParams
- }
|