Commit b50ab384 authored by ASN.1 Documenter's avatar ASN.1 Documenter
Browse files

initial

parent 20e1b3c0
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100755
+19 −0
Original line number Diff line number Diff line
include:
  - project: 'forge-tools/asn2md'
    file: '/gitlab-ci/base.yml'

variables:
  ASN1_SRC: '*.asn ieee1609.2/Ieee1609Dot2BaseTypes.asn'
  
validate:
  extends: .validate
  only:
    changes:
      - '*.asn'


documentation:
  extends: .documentation
  only:
    changes:
      - '*.asn'

.gitmodules

0 → 100755
+3 −0
Original line number Diff line number Diff line
[submodule "ieee1609.2"]
	path = ieee1609.2
	url = https://forge.etsi.org/rep/ITS/asn1/ieee1609.2.git

EtsiTs103601Module.asn

0 → 100755
+81 −0
Original line number Diff line number Diff line
EtsiTs103601Module {itu-t(0) identified-organization(4) etsi(0) itsDomain(5) wg5(5) ts(103601) p2pctlresponse(1) major-version-1(1) 
    minor-version-1(1)}
    DEFINITIONS AUTOMATIC TAGS ::= BEGIN
------------------------------------------
-- Specification of the segment message format to be used for the segmentation service
------------------------------------------

IMPORTS 
    HashedId8,
    Opaque,
    Psid,
    Time64,
    Uint8 FROM Ieee1609Dot2BaseTypes {iso(1) identified-organization(3) ieee(111)
        standards-association-numbered-series-standards(2) wave-stds(1609) dot2(2)
        base(1) base-types(2) major-version-2(2) minor-version-4(4)}
        WITH SUCCESSORS
;

/**
* This component is the general PDU generated by the segmentation service to transmit a segment of a large message or file.
* It shall include the following components: 
*
* @field version: contains the version number of this PDU definition. For this version of this data type it shall be equal to `1`.
* 
* @field segmentationTime: contains information on when the message or file was segmented into 1 or several pieces.
*
* - not included in the present version @field segmentationLocation: is the location at which the message or file was segmented
*
* @field segmentContent : contains the segmented data of the message or file. 
*/
SegmentPDU ::= SEQUENCE {
    version              Uint8,
    segmentationTime       Time64,
    segmentContent	SegmentedData {Psid}
}   

/**
* This component represents the payload of a segment/fragment of the file data. 
* It is composed of the following fields:
* @field distributedAid:  the ITS-AID of the file. The Psid/ Its-AID is a variable length INTEGER number.
* In the present version, the length of Its-AID will be less than or equal to 2 bytes. 
* 
* @field fileId: the id of the file to be distributed. It shall be set to the output of the SHA-256 hash function calculated on the transmitted CTL file content.
* 
* @field fileDescription: optionally, the file description or metadata of the segmented file.
* For instance, metadata could contain parameters required when coding scheme using a FEC encoding is used (cf. IETF RFC 6726)
*
* @field messageSegmentTotalNumber: the total number of segments/fragments constituting the complete file. 
*
* @field thisMessageSegmentNumber: the number that indicates the rank or position of this segment in the ordered sequence of segments constituting the complete CTL.
* The fields messageSegmentTotalNumber and thisMessageSegmentNumber may be present or absent depending on the use of a network/transport
* coding technique. If network/transport coding is used, these fields are unused and shall be absent.
* Note that coding technique is not specified in the current version of the standard.
*
* @field data: this field represents the file segment/fragment payload.
* MAX value is equal to the maximum size of the payload contained in the Segment PDU, i.e. the MTU-GN - control fields size. MTU value depends
* on the network access technology and on the network layer. For instance, if ITS-G5 access layer
* and GeoNetworking SHB protocol is used, MTU-GN - GN-Header - BTP-Header = 1428 bytes and MAX value is calculated as:
* 1428  - control fields size (30 bytes restricting the ITS-AID size to a maximum of 2 bytes). 
*
* All segments of the original full CTL, except the last one, shall have the same size equal to MAX value.
*/
SegmentedData {Psid}::= SEQUENCE {
    distributedAid          Psid,          
    fileId          HashedId8,     
    fileDescription   OCTET STRING (SIZE (5)) OPTIONAL,
    messageSegmentTotalNumber	INTEGER(1..255) OPTIONAL,
    thisMessageSegmentNumber	INTEGER(1..255) OPTIONAL,
    data         OCTET STRING (SIZE(1..MAX)),
...
} 

/**
* The Segmented CTL Responsemessage (SCRM) is a specific Segment PDU: it uses the parametrized data type SegmentedData where the psid parameter value is set to 
* the ITS-AID value of the CTL service as specified in ETSI TS 102 965 (i.e. value 624)
*/
ctlPsid Psid ::= 624

ScrmData ::= SegmentedData {Psid (ctlPsid)}

END
 No newline at end of file

LICENSE

0 → 100755
+23 −0
Original line number Diff line number Diff line
Copyright 2023 ETSI

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, 
   this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, 
   this list of conditions and the following disclaimer in the documentation 
   and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors 
   may be used to endorse or promote products derived from this software without 
   specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
OF THE POSSIBILITY OF SUCH DAMAGE.
+8 −85
Original line number Diff line number Diff line
# SDP TS 103 601
# ASN.1 modules for ETSI security management messages communication requirements and distribution protocols (ETSI TS 103 601) Release 2

This repository contains the ASN.1 module for the Release 2 of the ETSI security management messages communication requirements and distribution protocols (P2P CTL) in the EtsiTs103601Module.asn file.

## License

## Getting started

To make it easy for you to get started with GitLab, here's a list of recommended next steps.

Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!

## Add your files

- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:

```
cd existing_repo
git remote add origin https://forge.etsi.org/rep/ITS/asn1/sdp_ts103601.git
git branch -M main
git push -uf origin main
```

## Integrate with your tools

- [ ] [Set up project integrations](https://forge.etsi.org/rep/ITS/asn1/sdp_ts103601/-/settings/integrations)

## Collaborate with your team

- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)

## Test and Deploy

Use the built-in continuous integration in GitLab.

- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)

***

# Editing this README

When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.

## Suggestions for a good README
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.

## Name
Choose a self-explaining name for your project.

## Description
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.

## Badges
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.

## Visuals
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.

## Installation
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.

## Usage
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.

## Support
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.

## Roadmap
If you have ideas for releases in the future, it is a good idea to list them in the README.

## Contributing
State if you are open to contributions and what your requirements are for accepting them.

For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
The content of this repository and the files contained are released under the BSD-3-Clause license.
See the attached LICENSE file or visit https://forge.etsi.org/legal-matters.

You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
## Dependencies

## Authors and acknowledgment
Show your appreciation to those who have contributed to the project.
To compile the module, the following dependencies are required:

## License
For open source projects, say how it is licensed.
* The **[Ieee1609Dot2BaseTypes](https://forge.etsi.org/rep/ITS/asn1/ieee1609.2/)** module from the  **IEEE Std 1609.2** - WAVE - Security Services for Applications and Management Messages
## Project status
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
Loading