-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongo.go
637 lines (558 loc) · 18.1 KB
/
mongo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
// Copyright 2014 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package mongo
import (
"crypto/rand"
"encoding/base64"
"fmt"
"net"
"os"
"os/exec"
"path"
"path/filepath"
"strconv"
"strings"
"github.com/juju/errors"
"github.com/juju/loggo"
"github.com/juju/replicaset"
"github.com/juju/utils"
"github.com/juju/utils/packaging/config"
"github.com/juju/utils/packaging/manager"
"github.com/juju/utils/series"
"gopkg.in/mgo.v2"
"github.com/juju/juju/controller"
"github.com/juju/juju/network"
"github.com/juju/juju/service"
)
var (
logger = loggo.GetLogger("juju.mongo")
mongoConfigPath = "/etc/default/mongodb"
// JujuMongod24Path holds the default path to the legacy Juju
// mongod.
JujuMongod24Path = "/usr/lib/juju/bin/mongod"
// This is NUMACTL package name for apt-get
numaCtlPkg = "numactl"
)
// StorageEngine represents the storage used by mongo.
type StorageEngine string
const (
// JujuMongoPackage is the mongo package Juju uses when
// installing mongo.
JujuMongoPackage = "juju-mongodb3.2"
// JujuMongoTooldPackage is the mongo package Juju uses when
// installing mongo tools to get mongodump etc.
JujuMongoToolsPackage = "juju-mongo-tools3.2"
// MMAPV1 is the default storage engine in mongo db up to 3.x
MMAPV1 StorageEngine = "mmapv1"
// WiredTiger is a storage type introduced in 3
WiredTiger StorageEngine = "wiredTiger"
// Upgrading is a special case where mongo is being upgraded.
Upgrading StorageEngine = "Upgrading"
)
// Version represents the major.minor version of the runnig mongo.
type Version struct {
Major int
Minor int
Patch string // supports variants like 1-alpha
StorageEngine StorageEngine
}
// NewerThan will return 1 if the passed version is older than
// v, 0 if they are equal (or ver is a special case such as
// Upgrading and -1 if ver is newer.
func (v Version) NewerThan(ver Version) int {
if v == MongoUpgrade || ver == MongoUpgrade {
return 0
}
if v.Major > ver.Major {
return 1
}
if v.Major < ver.Major {
return -1
}
if v.Minor > ver.Minor {
return 1
}
if v.Minor < ver.Minor {
return -1
}
return 0
}
// NewVersion returns a mongo Version parsing the passed version string
// or error if not possible.
// A valid version string is of the form:
// 1.2.patch/storage
// major and minor are positive integers, patch is a string containing
// any ascii character except / and storage is one of the above defined
// StorageEngine. Only major is mandatory.
// An alternative valid string is 0.0/Upgrading which represents that
// mongo is being upgraded.
func NewVersion(v string) (Version, error) {
version := Version{}
if v == "" {
return Mongo24, nil
}
parts := strings.SplitN(v, "/", 2)
switch len(parts) {
case 0:
return Version{}, errors.New("invalid version string")
case 1:
version.StorageEngine = MMAPV1
case 2:
switch StorageEngine(parts[1]) {
case MMAPV1:
version.StorageEngine = MMAPV1
case WiredTiger:
version.StorageEngine = WiredTiger
case Upgrading:
version.StorageEngine = Upgrading
}
}
vParts := strings.SplitN(parts[0], ".", 3)
if len(vParts) >= 1 {
i, err := strconv.Atoi(vParts[0])
if err != nil {
return Version{}, errors.Annotate(err, "Invalid version string, major is not an int")
}
version.Major = i
}
if len(vParts) >= 2 {
i, err := strconv.Atoi(vParts[1])
if err != nil {
return Version{}, errors.Annotate(err, "Invalid version string, minor is not an int")
}
version.Minor = i
}
if len(vParts) == 3 {
version.Patch = vParts[2]
}
if version.Major == 2 && version.StorageEngine == WiredTiger {
return Version{}, errors.Errorf("Version 2.x does not support Wired Tiger storage engine")
}
// This deserialises the special "Mongo Upgrading" version
if version.Major == 0 && version.Minor == 0 {
return Version{StorageEngine: Upgrading}, nil
}
return version, nil
}
// String serializes the version into a string.
func (v Version) String() string {
s := fmt.Sprintf("%d.%d", v.Major, v.Minor)
if v.Patch != "" {
s = fmt.Sprintf("%s.%s", s, v.Patch)
}
if v.StorageEngine != "" {
s = fmt.Sprintf("%s/%s", s, v.StorageEngine)
}
return s
}
// JujuMongodPath returns the path for the mongod binary
// with the specified version.
func JujuMongodPath(v Version) string {
return fmt.Sprintf("/usr/lib/juju/mongo%d.%d/bin/mongod", v.Major, v.Minor)
}
var (
// Mongo24 represents juju-mongodb 2.4.x
Mongo24 = Version{Major: 2,
Minor: 4,
Patch: "",
StorageEngine: MMAPV1,
}
// Mongo26 represents juju-mongodb26 2.6.x
Mongo26 = Version{Major: 2,
Minor: 6,
Patch: "",
StorageEngine: MMAPV1,
}
// Mongo32wt represents juju-mongodb3 3.2.x with wiredTiger storage.
Mongo32wt = Version{Major: 3,
Minor: 2,
Patch: "",
StorageEngine: WiredTiger,
}
// MongoUpgrade represents a sepacial case where an upgrade is in
// progress.
MongoUpgrade = Version{Major: 0,
Minor: 0,
Patch: "Upgrading",
StorageEngine: Upgrading,
}
)
// InstalledVersion returns the version of mongo installed.
// We look for a specific, known version supported by this Juju,
// and fall back to the original mongo 2.4.
func InstalledVersion() Version {
mgoVersion := Mongo24
if binariesAvailable(Mongo32wt, os.Stat) {
mgoVersion = Mongo32wt
}
return mgoVersion
}
// binariesAvailable returns true if the binaries for the
// given Version of mongo are available.
func binariesAvailable(v Version, statFunc func(string) (os.FileInfo, error)) bool {
var path string
switch v {
case Mongo24:
// 2.4 has a fixed path.
path = JujuMongod24Path
default:
path = JujuMongodPath(v)
}
if _, err := statFunc(path); err == nil {
return true
}
return false
}
// WithAddresses represents an entity that has a set of
// addresses. e.g. a state Machine object
type WithAddresses interface {
Addresses() []network.Address
}
// IsMaster returns a boolean that represents whether the given
// machine's peer address is the primary mongo host for the replicaset
func IsMaster(session *mgo.Session, obj WithAddresses) (bool, error) {
addrs := obj.Addresses()
masterHostPort, err := replicaset.MasterHostPort(session)
// If the replica set has not been configured, then we
// can have only one master and the caller must
// be that master.
if err == replicaset.ErrMasterNotConfigured {
return true, nil
}
if err != nil {
return false, err
}
masterAddr, _, err := net.SplitHostPort(masterHostPort)
if err != nil {
return false, err
}
for _, addr := range addrs {
if addr.Value == masterAddr {
return true, nil
}
}
return false, nil
}
// SelectPeerAddress returns the address to use as the mongo replica set peer
// address by selecting it from the given addresses. If no addresses are
// available an empty string is returned.
func SelectPeerAddress(addrs []network.Address) string {
logger.Debugf("selecting mongo peer address from %+v", addrs)
// ScopeMachineLocal addresses are OK if we can't pick by space, also the
// second bool return is ignored intentionally.
addr, _ := network.SelectControllerAddress(addrs, true)
return addr.Value
}
// SelectPeerHostPort returns the HostPort to use as the mongo replica set peer
// by selecting it from the given hostPorts.
func SelectPeerHostPort(hostPorts []network.HostPort) string {
logger.Debugf("selecting mongo peer hostPort by scope from %+v", hostPorts)
return network.SelectMongoHostPortsByScope(hostPorts, true)[0]
}
// SelectPeerHostPortBySpace returns the HostPort to use as the mongo replica set peer
// by selecting it from the given hostPorts.
func SelectPeerHostPortBySpace(hostPorts []network.HostPort, space network.SpaceName) string {
logger.Debugf("selecting mongo peer hostPort in space %s from %+v", space, hostPorts)
// ScopeMachineLocal addresses are OK if we can't pick by space.
suitableHostPorts, foundHostPortsInSpaces := network.SelectMongoHostPortsBySpaces(hostPorts, []network.SpaceName{space})
if !foundHostPortsInSpaces {
logger.Debugf("Failed to select hostPort by space - trying by scope from %+v", hostPorts)
suitableHostPorts = network.SelectMongoHostPortsByScope(hostPorts, true)
}
return suitableHostPorts[0]
}
// GenerateSharedSecret generates a pseudo-random shared secret (keyfile)
// for use with Mongo replica sets.
func GenerateSharedSecret() (string, error) {
// "A key’s length must be between 6 and 1024 characters and may
// only contain characters in the base64 set."
// -- http://docs.mongodb.org/manual/tutorial/generate-key-file/
buf := make([]byte, base64.StdEncoding.DecodedLen(1024))
if _, err := rand.Read(buf); err != nil {
return "", fmt.Errorf("cannot read random secret: %v", err)
}
return base64.StdEncoding.EncodeToString(buf), nil
}
// Path returns the executable path to be used to run mongod on this
// machine. If the juju-bundled version of mongo exists, it will return that
// path, otherwise it will return the command to run mongod from the path.
func Path(version Version) (string, error) {
return mongoPath(version, os.Stat, exec.LookPath)
}
func mongoPath(version Version, stat func(string) (os.FileInfo, error), lookPath func(string) (string, error)) (string, error) {
switch version {
case Mongo24:
if _, err := stat(JujuMongod24Path); err == nil {
return JujuMongod24Path, nil
}
path, err := lookPath("mongod")
if err != nil {
logger.Infof("could not find %v or mongod in $PATH", JujuMongod24Path)
return "", err
}
return path, nil
default:
path := JujuMongodPath(version)
var err error
if _, err = stat(path); err == nil {
return path, nil
}
}
logger.Infof("could not find a suitable binary for %q", version)
errMsg := fmt.Sprintf("no suitable binary for %q", version)
return "", errors.New(errMsg)
}
// EnsureServerParams is a parameter struct for EnsureServer.
type EnsureServerParams struct {
// APIPort is the port to connect to the api server.
APIPort int
// StatePort is the port to connect to the mongo server.
StatePort int
// Cert is the certificate.
Cert string
// PrivateKey is the certificate's private key.
PrivateKey string
// CAPrivateKey is the CA certificate's private key.
CAPrivateKey string
// SharedSecret is a secret shared between mongo servers.
SharedSecret string
// SystemIdentity is the identity of the system.
SystemIdentity string
// DataDir is the machine agent data directory.
DataDir string
// Namespace is the machine agent's namespace, which is used to
// generate a unique service name for Mongo.
Namespace string
// OplogSize is the size of the Mongo oplog.
// If this is zero, then EnsureServer will
// calculate a default size according to the
// algorithm defined in Mongo.
OplogSize int
// SetNUMAControlPolicy preference - whether the user
// wants to set the numa control policy when starting mongo.
SetNUMAControlPolicy bool
}
// EnsureServer ensures that the MongoDB server is installed,
// configured, and ready to run.
//
// This method will remove old versions of the mongo init service as necessary
// before installing the new version.
func EnsureServer(args EnsureServerParams) error {
logger.Infof(
"Ensuring mongo server is running; data directory %s; port %d",
args.DataDir, args.StatePort,
)
dbDir := filepath.Join(args.DataDir, "db")
if err := os.MkdirAll(dbDir, 0700); err != nil {
return fmt.Errorf("cannot create mongo database directory: %v", err)
}
oplogSizeMB := args.OplogSize
if oplogSizeMB == 0 {
var err error
if oplogSizeMB, err = defaultOplogSize(dbDir); err != nil {
return err
}
}
operatingsystem := series.HostSeries()
if err := installMongod(operatingsystem, args.SetNUMAControlPolicy); err != nil {
// This isn't treated as fatal because the Juju MongoDB
// package is likely to be already installed anyway. There
// could just be a temporary issue with apt-get/yum/whatever
// and we don't want this to stop jujud from starting.
// (LP #1441904)
logger.Errorf("cannot install/upgrade mongod (will proceed anyway): %v", err)
}
mgoVersion := InstalledVersion()
mongoPath, err := Path(mgoVersion)
if err != nil {
return err
}
logVersion(mongoPath)
if err := UpdateSSLKey(args.DataDir, args.Cert, args.PrivateKey); err != nil {
return err
}
err = utils.AtomicWriteFile(sharedSecretPath(args.DataDir), []byte(args.SharedSecret), 0600)
if err != nil {
return fmt.Errorf("cannot write mongod shared secret: %v", err)
}
// Disable the default mongodb installed by the mongodb-server package.
// Only do this if the file doesn't exist already, so users can run
// their own mongodb server if they wish to.
if _, err := os.Stat(mongoConfigPath); os.IsNotExist(err) {
err = utils.AtomicWriteFile(
mongoConfigPath,
[]byte("ENABLE_MONGODB=no"),
0644,
)
if err != nil {
return err
}
}
svcConf := newConf(ConfigArgs{
DataDir: args.DataDir,
DBDir: dbDir,
MongoPath: mongoPath,
Port: args.StatePort,
OplogSizeMB: oplogSizeMB,
WantNUMACtl: args.SetNUMAControlPolicy,
Version: mgoVersion,
Auth: true,
IPv6: network.SupportsIPv6(),
})
svc, err := newService(ServiceName, svcConf)
if err != nil {
return err
}
installed, err := svc.Installed()
if err != nil {
return errors.Trace(err)
}
if installed {
exists, err := svc.Exists()
if err != nil {
return errors.Trace(err)
}
if exists {
logger.Debugf("mongo exists as expected")
running, err := svc.Running()
if err != nil {
return errors.Trace(err)
}
if !running {
return svc.Start()
}
return nil
}
}
if err := svc.Stop(); err != nil {
return errors.Annotatef(err, "failed to stop mongo")
}
if err := makeJournalDirs(dbDir); err != nil {
return fmt.Errorf("error creating journal directories: %v", err)
}
if err := preallocOplog(dbDir, oplogSizeMB); err != nil {
return fmt.Errorf("error creating oplog files: %v", err)
}
if err := service.InstallAndStart(svc); err != nil {
return errors.Trace(err)
}
return nil
}
// UpdateSSLKey writes a new SSL key used by mongo to validate connections from Juju controller(s)
func UpdateSSLKey(dataDir, cert, privateKey string) error {
certKey := cert + "\n" + privateKey
err := utils.AtomicWriteFile(sslKeyPath(dataDir), []byte(certKey), 0600)
return errors.Annotate(err, "cannot write SSL key")
}
func makeJournalDirs(dataDir string) error {
journalDir := path.Join(dataDir, "journal")
if err := os.MkdirAll(journalDir, 0700); err != nil {
logger.Errorf("failed to make mongo journal dir %s: %v", journalDir, err)
return err
}
// Manually create the prealloc files, since otherwise they get
// created as 100M files. We create three files of 1MB each.
prefix := filepath.Join(journalDir, "prealloc.")
preallocSize := 1024 * 1024
return preallocFiles(prefix, preallocSize, preallocSize, preallocSize)
}
func logVersion(mongoPath string) {
cmd := exec.Command(mongoPath, "--version")
output, err := cmd.CombinedOutput()
if err != nil {
logger.Infof("failed to read the output from %s --version: %v", mongoPath, err)
return
}
logger.Debugf("using mongod: %s --version: %q", mongoPath, output)
}
func installPackage(pkg string, pacconfer config.PackagingConfigurer, pacman manager.PackageManager) error {
// apply release targeting if needed.
if pacconfer.IsCloudArchivePackage(pkg) {
pkg = strings.Join(pacconfer.ApplyCloudArchiveTarget(pkg), " ")
}
return pacman.Install(pkg)
}
func installMongod(operatingsystem string, numaCtl bool) error {
// fetch the packaging configuration manager for the current operating system.
pacconfer, err := config.NewPackagingConfigurer(operatingsystem)
if err != nil {
return err
}
// fetch the package manager implementation for the current operating system.
pacman, err := manager.NewPackageManager(operatingsystem)
if err != nil {
return err
}
// CentOS requires "epel-release" for the epel repo mongodb-server is in.
if operatingsystem == "centos7" {
// install epel-release
if err := pacman.Install("epel-release"); err != nil {
return err
}
}
mongoPkgs, fallbackPkgs := packagesForSeries(operatingsystem)
if numaCtl {
logger.Infof("installing %v and %s", mongoPkgs, numaCtlPkg)
if err = installPackage(numaCtlPkg, pacconfer, pacman); err != nil {
return errors.Trace(err)
}
} else {
logger.Infof("installing %v", mongoPkgs)
}
for i := range mongoPkgs {
if err = installPackage(mongoPkgs[i], pacconfer, pacman); err != nil {
break
}
}
if err != nil && len(fallbackPkgs) == 0 {
return errors.Trace(err)
}
if err != nil {
logger.Errorf("installing mongo failed: %v", err)
logger.Infof("will try fallback packages %v", fallbackPkgs)
for i := range fallbackPkgs {
if err = installPackage(fallbackPkgs[i], pacconfer, pacman); err != nil {
return errors.Trace(err)
}
}
}
// Work around SELinux on centos7
if operatingsystem == "centos7" {
cmd := []string{"chcon", "-R", "-v", "-t", "mongod_var_lib_t", "/var/lib/juju/"}
logger.Infof("running %s %v", cmd[0], cmd[1:])
_, err = utils.RunCommand(cmd[0], cmd[1:]...)
if err != nil {
logger.Errorf("chcon failed to change file security context error %s", err)
return err
}
cmd = []string{"semanage", "port", "-a", "-t", "mongod_port_t", "-p", "tcp", strconv.Itoa(controller.DefaultStatePort)}
logger.Infof("running %s %v", cmd[0], cmd[1:])
_, err = utils.RunCommand(cmd[0], cmd[1:]...)
if err != nil {
if !strings.Contains(err.Error(), "exit status 1") {
logger.Errorf("semanage failed to provide access on port %d error %s", controller.DefaultStatePort, err)
return err
}
}
}
return nil
}
// packagesForSeries returns the name of the mongo package for the series
// of the machine that it is going to be running on plus a fallback for
// options where the package is going to be ready eventually but might not
// yet be.
func packagesForSeries(series string) ([]string, []string) {
switch series {
case "precise", "quantal", "raring", "saucy", "centos7":
return []string{"mongodb-server"}, []string{}
case "trusty", "wily", "xenial":
return []string{JujuMongoPackage, JujuMongoToolsPackage}, []string{"juju-mongodb"}
default:
// y and onwards
return []string{JujuMongoPackage, JujuMongoToolsPackage}, []string{}
}
}
// DbDir returns the dir where mongo storage is.
func DbDir(dataDir string) string {
return filepath.Join(dataDir, "db")
}