Class: Bootloader::GrubPasswordWidget

Inherits:
CWM::CustomWidget
  • Object
show all
Includes:
Grub2Widget
Defined in:
src/lib/bootloader/grub2_widgets.rb

Overview

Represents grub password protection widget

Constant Summary

MASKED_PASSWORD =
"**********".freeze

Instance Method Summary (collapse)

Methods included from Grub2Widget

#grub2, #grub_default, #password, #sections, #stage1

Constructor Details

- (GrubPasswordWidget) initialize

Returns a new instance of GrubPasswordWidget



335
336
337
# File 'src/lib/bootloader/grub2_widgets.rb', line 335

def initialize
  textdomain "bootloader"
end

Instance Method Details

- (Object) contents



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
# File 'src/lib/bootloader/grub2_widgets.rb', line 341

def contents
  HBox(
    CheckBoxFrame(
      Id(:use_pas),
      _("Prot&ect Boot Loader with Password"),
      true,
      VBox(
        HBox(
          HSpacing(2),
          # TRANSLATORS: checkbox entry
          CheckBox(Id(:unrestricted_pw), _("P&rotect Entry Modification Only")),
          HStretch()
        ),
        HBox(
          HSpacing(2),
          # TRANSLATORS: text entry, please keep it short
          Password(Id(:pw1), Opt(:hstretch), _("&Password for GRUB2 User 'root'")),
          # text entry
          HSpacing(2),
          Password(Id(:pw2), Opt(:hstretch), _("Re&type Password")),
          HStretch()
        )
      )
    )
  )
end

- (Object) handle(event)



399
400
401
402
403
404
405
406
407
408
# File 'src/lib/bootloader/grub2_widgets.rb', line 399

def handle(event)
  return unless event["ID"] == :use_pas

  enabled = Yast::UI.QueryWidget(Id(:use_pas), :Value)
  Yast::UI.ChangeWidget(Id(:unrestricted_pw), :Enabled, enabled)
  Yast::UI.ChangeWidget(Id(:pw1), :Enabled, enabled)
  Yast::UI.ChangeWidget(Id(:pw2), :Enabled, enabled)

  nil
end

- (Object) help



427
428
429
430
431
432
433
434
435
436
437
438
439
# File 'src/lib/bootloader/grub2_widgets.rb', line 427

def help
  _(
    "<p><b>Protect Boot Loader with Password</b><br>\n" \
      "At boot time, modifying or even booting any entry will require the" \
      " password. If <b>Protect Entry Modification Only</b> is checked then " \
      "booting any entry is not restricted but modifying entries requires " \
      "the password (which is the way GRUB 1 behaved).<br>" \
      "YaST will only accept the password if you repeat it in " \
      "<b>Retype Password</b>. The password applies to the GRUB2 user 'root' " \
      "which is distinct from the Linux 'root'. YaST currently does not support" \
      "other GRUB2 users. If you need them, use a separate GRUB2 script.</p>"
  )
end

- (Object) init



385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'src/lib/bootloader/grub2_widgets.rb', line 385

def init
  enabled = password.used?
  # read state on disk only if not already set by user (bnc#900026)
  value = enabled && password.password? ? MASKED_PASSWORD : ""

  Yast::UI.ChangeWidget(Id(:use_pas), :Value, enabled)
  Yast::UI.ChangeWidget(Id(:pw1), :Enabled, enabled)
  Yast::UI.ChangeWidget(Id(:pw1), :Value, value)
  Yast::UI.ChangeWidget(Id(:pw2), :Enabled, enabled)
  Yast::UI.ChangeWidget(Id(:pw2), :Value, value)
  Yast::UI.ChangeWidget(Id(:unrestricted_pw), :Enabled, enabled)
  Yast::UI.ChangeWidget(Id(:unrestricted_pw), :Value, password.unrestricted?)
end

- (Object) store



410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
# File 'src/lib/bootloader/grub2_widgets.rb', line 410

def store
  usepass = Yast::UI.QueryWidget(Id(:use_pas), :Value)
  if !usepass
    password.used = false
    return
  end

  password.used = true

  value = Yast::UI.QueryWidget(Id(:pw1), :Value)
  # special value as we do not know password, so it mean user do not change it
  password.password = value if value != MASKED_PASSWORD

  value = Yast::UI.QueryWidget(Id(:unrestricted_pw), :Value)
  password.unrestricted = value
end

- (Object) validate



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# File 'src/lib/bootloader/grub2_widgets.rb', line 368

def validate
  return true unless Yast::UI.QueryWidget(Id(:use_pas), :Value)
  if Yast::UI.QueryWidget(Id(:pw1), :Value) == ""
    Yast::Report.Error(_("The password must not be empty."))
    Yast::UI.SetFocus(Id(:pw1))
    return false
  end
  if Yast::UI.QueryWidget(Id(:pw1), :Value) == Yast::UI.QueryWidget(Id(:pw2), :Value)
    return true
  end
  Yast::Report.Error(_(
                       "'Password' and 'Retype password'\ndo not match. Retype the password."
  ))
  Yast::UI.SetFocus(Id(:pw1))
  false
end