summaryrefslogtreecommitdiff
path: root/DEVELOPING.md
blob: 6a920bc8a376bfe5fff7f595fcf313217e8d49ae (plain)
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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
# OpenBMC Webserver Development

1. ### Performance targets
    As OpenBMC is intended to be deployed on an embedded system, care should be
    taken to avoid expensive constructs, and memory usage.  In general, our
    performance and metric targets are:

    - Binaries and static files should take up < 1MB of filesystem size
    - Memory usage should remain below 10MB at all times
    - Application startup time should be less than 1 second on target hardware
      (AST2500)

2. ### Asynchronous programming
   Care should be taken to ensure that all code is written to be asynchronous in
   nature, to avoid blocking methods from stopping the processing of other
   tasks.  At this time the webserver uses boost::asio for it async framework.
   Threads should be avoided if possible, and instead use async tasks within
   boost::asio.

3. ### Secure coding guidelines
   Secure coding practices should be followed in all places in the webserver

    In general, this means:
    - All buffer boundaries must be checked before indexing or using values
    - All pointers and iterators must be checked for null before dereferencing
    - All input from outside the application is considered untrusted, and should
      be escaped, authorized and filtered accordingly.  This includes files in
      the filesystem.
    - All error statuses are checked and accounted for in control flow.
    - Where applicable, noexcept methods should be preferred to methods that use
      exceptions
    - Explicitly bounded types should be preferred over implicitly bounded types
      (like std::array<int, size> as opposed to int[size])
    - no use of [Banned
      functions](https://github.com/intel/safestringlib/wiki/SDL-List-of-Banned-Functions
      "Banned function list")

4. ### Error handling
   Error handling should be constructed in such a way that all possible errors
   return valid HTTP responses.  The following HTTP codes will be used commonly
    - 200 OK - Request was properly handled
    - 201 Created - Resource was created
    - 401 Unauthorized - Request didn't posses the necessary authentication
    - 403 Forbidden - Request was authenticated, but did not have the necessary
      permissions to accomplish the requested task
    - 404 Not found - The url was not found
    - 500 Internal error - Something has broken within the OpenBMC web server,
      and should be filed as a bug

    Where possible, 307 and 308 redirects should be avoided, as they introduce
    the possibility for subtle security bugs.

5. ### Startup times
   Given that the most common target of OpenBMC is an ARM11 processor, care
   needs to be taken to ensure startup times are low.  In general this means:

    - Minimizing the number of files read from disk at startup.  Unless a
      feature is explicitly intended to be runtime configurable, its logic
      should be "baked in" to the application at compile time.  For cases where
      the implementation is configurable at runtime, the default values should
      be included in application code to minimize the use of nonvolatile
      storage.
    - Avoid excessive memory usage and mallocs at startup.

6. ### Compiler features
    - At this point in time, the webserver sets a number of security flags in
      compile time options to prevent misuse.  The specific flags and what
      optimization levels they are enabled at are documented in the
      CMakeLists.txt file.
    - Exceptions are currently enabled for webserver builds, but their use is
      discouraged.  Long term, the intent is to disable exceptions, so any use
      of them for explicit control flow will likely be rejected in code review.
      Any use of exceptions should be cases where the program can be reasonably
      expected to crash if the exception occurs, as this will be the future
      behavior once exceptions are disabled.
    - Run time type information is disabled
    - Link time optimization is enabled

7. ### Authentication
   The webserver shall provide the following authentication mechanisms.
    - Basic authentication
    - Cookie authentication
    - Token authentication

    There shall be connection between the authentication mechanism used and
    resources that are available over it. The webserver shall employ an
    authentication scheme that is in line with the rest of OpenBMC, and allows
    users and privileges to be provisioned from other interfaces.

8. ### Web security
   The OpenBMC webserver shall follow the latest OWASP recommendations for
   authentication, session management, and security.

9. ### Performance
   The performance priorities for the OpenBMC webserver are (in order):
    1. Code is readable and clear
    2. Code follows secure guidelines
    3. Code is performant, and does not unnecessarily abstract concepts at the
       expense of performance
    4. Code does not employ constructs which require continuous system
       resources, unless required to meet performance targets.  (example:
       caching sensor values which are expected to change regularly)

10. ### Abstraction/interfacing
   In general, the OpenBMC webserver is built using the data driven design.
   Abstraction and Interface guarantees should be used when multiple
   implementations exist, but for implementations where only a single
   implementation exists, prefer to make the code correct and clean rather than
   implement a concrete interface.

11. ### phosphor webui
   The webserver should be capable of hosting phosphor-webui, and impelmenting
   the required flows to host the application.  In general, all access methods
   should be available to the webui.

12. ### Developing and Testing
  There are a variety of ways to develop and test bmcweb software changes.
  Here are the steps for using the SDK and QEMU.

  - Follow all [development environment setup](https://github.com/openbmc/docs/blob/master/development/dev-environment.md)
  directions in the development environment setup document. This will get
  QEMU started up and you in the SDK environment.
  - Follow all of the [gerrit setup](https://github.com/openbmc/docs/blob/master/development/gerrit-setup.md)
  directions in the gerrit setup document.
  - Clone bmcweb from gerrit
  ```
  git clone ssh://openbmc.gerrit/bmcweb/
  ```

  - Ensure it compiles
  ```
  cmake ./ && make
  ```
  **Note:** If you'd like to enable debug traces in bmcweb, use the
  following command for cmake
  ```
  cmake ./ -DCMAKE_BUILD_TYPE:type=Debug
  ```

  - Make your changes as needed, rebuild with `make`

  - Reduce binary size by stripping it when ready for testing
  ```
  arm-openbmc-linux-gnueabi-strip bmcweb
  ```
  **Note:** Stripping is not required and having the debug symbols could be
  useful depending on your testing. Leaving them will drastically increase
  your transfer time to the BMC.

  - Copy your bmcweb you want to test to /tmp/ in QEMU
  ```
  scp -P 2222 bmcweb root@127.0.0.1:/tmp/
  ```
  **Special Notes:**
  The address and port shown here (127.0.0.1 and 2222) reaches the QEMU session
  you set up in your development environment as described above.

  - Stop bmcweb service within your QEMU session
  ```
  systemctl stop bmcweb
  ```
  **Note:** bmcweb supports being started directly in parallel with the bmcweb
  running as a service. The standalone bmcweb will be available on port 18080.
  An advantage of this is you can compare between the two easily for testing.
  In QEMU you would need to open up port 18080 when starting QEMU. Your curl
  commands would need to use 18080 to communicate.

  - If running within a system that has read-only /usr/ filesystem, issue
  the following commands one time per QEMU boot to make the filesystem
  writeable
  ```
  mkdir -p /var/persist/usr
  mkdir -p /var/persist/work/usr
  mount -t overlay -o lowerdir=/usr,upperdir=/var/persist/usr,workdir=/var/persist/work/usr overlay /usr
  ```

  - Remove the existing bmcweb from the filesystem in QEMU
  ```
  rm /usr/bin/bmcweb
  ```

  - Link to your new bmcweb in /tmp/
  ```
  ln -sf /tmp/bmcweb /usr/bin/bmcweb
  ```

  - Test your changes. bmcweb will be started automatically upon your
  first REST or Redfish command
  ```
  curl -c cjar -b cjar -k -X POST https://127.0.0.1:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
  curl -c cjar -b cjar -k -X GET https://127.0.0.1:2443/xyz/openbmc_project/state/bmc0
  ```

  - Stop the bmcweb service and scp new file over to /tmp/ each time you
  want to retest a change.

  See the [REST](https://github.com/openbmc/docs/blob/master/REST-cheatsheet.md)
  and [Redfish](https://github.com/openbmc/docs/blob/master/REDFISH-cheatsheet.md) cheatsheets for valid commands.

13. ### Redfish

  The redfish implementation shall pass the [Redfish Service
  Validator](https://github.com/DMTF/Redfish-Service-Validator "Validator") with
  no warnings or errors

  The following redfish schemas and fields are targeted for OpenBMC.  This is a
  living document, and these schemas are subject to change.

  The latest Redfish schemas can be found [here](https://redfish.dmtf.org/schemas/)

  Fields common to all schemas

  - @odata.context
  - @odata.id
  - @odata.type
  - Id
  - Name


  #### /redfish/v1/
  ##### ServiceRoot

  - RedfishVersion
  - UUID


  #### /redfish/v1/AccountService/
  ##### AccountService

  - Description
  - ServiceEnabled
  - MinpasswordLength
  - MaxPasswordLength
  - Accounts
  - Roles

  #### /redfish/v1/AccountService/Accounts/
  ##### AccountCollection

  - Description
  - Members@odata.count
  - Members

  #### /redfish/v1/AccountService/Accounts/<AccountName>
  ##### Account

  - Description
  - Enabled
  - Password
  - UserName
  - RoleId
  - Links/Role

  #### /redfish/v1/AccountService/Roles/
  ##### RoleCollection

  - Description
  - Members@odata.count
  - Members
      - By default will contain 3 roles, "Administrator", "Operator", and "User"

  #### /redfish/v1/AccountService/Roles/<RoleName>
  ##### Role

  - Description
  - IsPredefined
      - Will be set to true for all default roles.  If the given role is
        non-default, or has been modified from default, will be marked as false.
  - AssignedPrivileges
      - For the default roles, the following privileges will be assigned by
        default
          - Administrator: Login, ConfigureManager, ConfigureUsers, ConfigureSelf,
            ConfigureComponents
          - Operator: Login, ConfigureComponents
          - User: Login


  #### /redfish/v1/Chassis
  ##### ChassisCollection

  - Members@odata.count
  - Members

  #### /redfish/v1/Chassis/<ChassisName>
  ##### Chassis

  - ChassisType
  - Manufacturer
  - Model
  - SerialNumber
  - PartNumber
  - PowerState
  - Thermal
      - Shall be included if component contains temperature sensors, otherwise
        shall be omitted.
  - Power
      - Shall be included if component contains voltage/current sensing
        components, otherwise will be omitted.

  #### /redfish/v1/Chassis/<ChassisName>/Thermal
  ##### Thermal
  Temperatures Fans Redundancy

  #### /redfish/v1/Chassis/<ChassisName>/Thermal#/Temperatures/<SensorName>
  ##### Temperature
  - MemberId
  - Status
  - ReadingCelsius
  - UpperThresholdNonCritical
  - UpperThresholdCritical
  - LowerThresholdNonCritical
  - LowerThresholdCritical
  - MinReadingRange
  - MaxReadingRange

  *threshold fields only present if defined for sensor, otherwise absent*

  #### /redfish/v1/Chassis/<ChassisName>/Thermal#/Fans/<FanName>
  ##### Fan
  - MemberId
  - Status
  - Reading
  - ReadingUnits
  - UpperThresholdNonCritical
  - UpperThresholdCritical
  - LowerThresholdNonCritical
  - LowerThresholdCritical
  - MinReadingRange
  - MaxReadingRange
  - Redundancy

  *threshold fields only present if defined for sensor, otherwise absent*

  #### /redfish/v1/Chassis/<ChassisName>/Thermal#/Redundancy/<RedundancyName>
  ##### Fan
  - MemberId
  - RedundancySet
  - Mode
  - Status
  - MinNumNeeded
  - MaxNumSupported


  #### /redfish/v1/Chassis/<ChassisName>/Power/
  ##### Thermal
  PowerControl Voltages PowerSupplies Redundancy

  #### /redfish/v1/Chassis/<ChassisName>/Power#/PowerControl/<ControlName>
  ##### PowerControl
  - MemberId
  - PowerConsumedWatts
  - PowerMetrics/IntervalInMin
  - PowerMetrics/MinConsumedWatts
  - PowerMetrics/MaxConsumedWatts
  - PowerMetrics/AverageConsumedWatts
  - RelatedItem
      - Should list systems and related chassis

  #### /redfish/v1/Chassis/<ChassisName>/Power#/Voltages/<VoltageName>
  ##### Voltage
  - MemberId
  - Status
  - ReadingVolts
  - UpperThresholdNonCritical
  - UpperThresholdCritical
  - LowerThresholdNonCritical
  - LowerThresholdCritical
  - MinReadingRange
  - MaxReadingRange
  - PhysicalContext
  - RelatedItem

  #### /redfish/v1/Chassis/<ChassisName>/Power#/PowerSupplies/<PSUName>
  ##### PowerSupply
  - MemberId
  - Status
  - LininputVoltage
  - Model
  - manufacturer
  - FirmwareVersion
  - SerialNumber
  - PartNumber
  - RelatedItem
  - Redundancy

  #### /redfish/v1/Chassis/{ChassisName}/Power#/Redundancy/<RedundancyName>
  ##### Redundancy
  - MemberId
  - RedundancySet
  - Mode
  - Status
  - MinNumNeeded
  - MaxNumSupported


  #### /redfish/v1/EventService
  ##### EventService
  - Id
  - ServiceEnabled
  - DeliveryRetryAttempts
      - Defaults to 3
  - EventTypesForSubscription
      - Defaults to "Alert"
  - Actions
  - Subscriptions

  #### /redfish/v1/EventService/Subscriptions
  ##### EventDestinationCollection
  - Members@odata.count
  - Members

  #### /redfish/v1/EventService/Subscriptions/{EventName}/
  ##### EventDestination
  - Id
  - Destination
  - EventTypes
  - Context
  - OriginResources
  - Protocol


  #### /redfish/v1/Managers
  ##### ManagerCollection
  - Members
  - Members@odata.count

  #### /redfish/v1/Managers/BMC
  ##### Manager
  - Description
  - LogServices
  - GraphicalConsole
  - UUID
  - Model
  - Links
  - PowerState
  - FirmwareVersion
  - ManagerType
  - ServiceEntryPointUUID
  - DateTime
  - NetworkProtocol
  - Actions
  - Status
  - SerialConsole
  - VirtualMedia
  - EthernetInterfaces

  #### /redfish/v1/Managers/BMC/EthernetInterfaces
  ##### EthernetInterfaceCollection
  - Members
  - Members@odata.count
  - Description

  #### /redfish/v1/Managers/BMC/EthernetInterfaces/{InterfaceName}
  ##### EthernetInterface
  - Description
  - VLAN
  - MaxIPv6StaticAddresses

  #### /redfish/v1/Managers/BMC/LogServices
  ##### LogServiceCollection
  - Members
  - Members@odata.count
  - Description

  #### /redfish/v1/Managers/BMC/LogServices/RedfishLog
  ##### LogService
  - Entries
  - OverWritePolicy
  - Actions
  - Status
  - DateTime
  - MaxNumberOfRecords

  #### /redfish/v1/Managers/BMC/LogServices/RedfishLog/Entries/{entry}
  ##### LogEntry
  - Message
  - Created
  - EntryType

  #### /redfish/v1/Managers/BMC/NetworkProtocol
  ##### ManagerNetworkProtocol
  - Description
  - SSDP
  - HTTPS
  - SSH
  - VirtualMedia
  - KVMIP
  - Status


  #### /redfish/v1/Registries
  ##### MessageRegistryFileCollection
  - Members
      - Should support Base, CommonMessages, and EventingMessages
  - Members@odata.count
  - Description

  #### /redfish/v1/Registries/<MessageRegistry>
  ##### MessageRegistryFile
  - Location
  - Description
  - Location@odata.count
  - Languages@odata.count
  - Languages
  - Registry


  #### /redfish/v1/SessionService
  ##### SessionService
  - Description
  - ServiceEnabled
  - Status
  - SessionTimeout
  - Sessions

  #### /redfish/v1/SessionService/Sessions
  ##### SessionCollection
  - Members
  - Members@odata.count
  - Description


  #### /redfish/v1/Systems
  ##### ComputerSystemCollection
  - Members
      - Should support one system
  - Members@odata.count

  #### /redfish/v1/Systems/{SystemName}
  ##### ComputerSystem
  - Boot
  - PartNumber
  - IndicatorLED
  - UUID
  - LogServices
  - SystemType
  - Manufacturer
  - Description
  - Model
  - Links
  - PowerState
  - BiosVersion
  - Storage
  - SerialNumber
  - Processors
  - ProcessorSummary
  - Memory
  - Actions
  - Status
  - EthernetInterfaces
  - MemorySummary

  #### /redfish/v1/Systems/{SystemName}/EthernetInterfaces
  ##### EthernetInterfaceCollection
  - Members
  - Members@odata.count
  - Description

  #### /redfish/v1/Systems/{SystemName}/LogServices
  ##### LogServiceCollection
  - Members
      - Should default to one member, named SEL
  - Members@odata.count
  - Description

  #### /redfish/v1/Systems/{SystemName}/LogServices/SEL/Entries
  ##### LogEntryCollection
  - Members
  - Members@odata.count
  - Description
  - @odata.nextLink

  #### /redfish/v1/Systems/{SystemName}/LogServices/SEL/Entries/{entryNumber}
  ##### LogEntry
  - MessageArgs
  - Severity
  - SensorType
  - Message
  - MessageId
  - Created
  - EntryCode
  - EntryType

  #### /redfish/v1/Systems/{SystemName}/Memory
  ##### MemoryCollection
  - Members
  - Members@odata.count

  #### /redfish/v1/Systems/{SystemName}/Memory/Memory1
  ##### Memory
  - MemoryType
  - Description
  - DeviceLocator
  - Oem
  - Metrics
  - BaseModuleType
  - Manufacturer
  - MemoryDeviceType
  - RankCount
  - AllowedSpeedsMHz
  - CapacityMiB
  - DataWidthBits
  - SerialNumber
  - OperatingSpeedMhz
  - ErrorCorrection
  - PartNumber
  - Status
  - BusWidthBits
  - MemoryMedia

  #### /redfish/v1/Systems/{SystemName}/Memory/Memory1/MemoryMetrics
  ##### MemoryMetrics
  - Description
  - HealthData

  #### /redfish/v1/Systems/{SystemName}/Processors
  ##### ProcessorCollection
  - Members
      - Should Support CPU1 and CPU2 for dual socket systems
  - Members@odata.count

  #### /redfish/v1/Systems/{SystemName}/Processors/{CPUName}
  ##### Processor
  - ProcessorArchitecture
  - TotalCores
  - ProcessorId
  - MaxSpeedMHz
  - Manufacturer
  - Status
  - Socket
  - InstructionSet
  - Model
  - ProcessorType
  - TotalThreads

  #### /redfish/v1/Systems/{SystemName}/Storage
  ##### StorageCollection
  - Members
  - Members@odata.count

  #### /redfish/v1/Systems/{SystemName}/Storage/{storageIndex>
  ##### Storage
  - Drives
  - Links


  #### /redfish/v1/UpdateService
  ##### UpdateService
  - SoftwareInventory

  #### /redfish/v1/UpdateService/SoftwareInventory
  ##### SoftwareInventoryCollection
  - Members
  - Should Support BMC, ME, CPLD and BIOS
  - Members@odata.count

  #### /redfish/v1/UpdateService/SoftwareInventory/{MemberName}
  ##### SoftwareInventory
  - Version