61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build gofuzz
 | 
						|
 | 
						|
/*
 | 
						|
   Copyright The containerd Authors.
 | 
						|
   Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
   you may not use this file except in compliance with the License.
 | 
						|
   You may obtain a copy of the License at
 | 
						|
       http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
   Unless required by applicable law or agreed to in writing, software
 | 
						|
   distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
   See the License for the specific language governing permissions and
 | 
						|
   limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package fuzz
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"context"
 | 
						|
 | 
						|
	fuzz "github.com/AdaLogics/go-fuzz-headers"
 | 
						|
 | 
						|
	containerd "github.com/containerd/containerd/v2/client"
 | 
						|
	"github.com/containerd/containerd/v2/namespaces"
 | 
						|
)
 | 
						|
 | 
						|
func fuzzContext() (context.Context, context.CancelFunc) {
 | 
						|
	ctx, cancel := context.WithCancel(context.Background())
 | 
						|
	ctx = namespaces.WithNamespace(ctx, "fuzzing-namespace")
 | 
						|
	return ctx, cancel
 | 
						|
}
 | 
						|
 | 
						|
func FuzzContainerdImport(data []byte) int {
 | 
						|
	initDaemon.Do(startDaemon)
 | 
						|
 | 
						|
	client, err := containerd.New(defaultAddress)
 | 
						|
	if err != nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	defer client.Close()
 | 
						|
 | 
						|
	f := fuzz.NewConsumer(data)
 | 
						|
 | 
						|
	noOfImports, err := f.GetInt()
 | 
						|
	if err != nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	maxImports := 20
 | 
						|
	ctx, cancel := fuzzContext()
 | 
						|
	defer cancel()
 | 
						|
	for i := 0; i < noOfImports%maxImports; i++ {
 | 
						|
		tarBytes, err := f.GetBytes()
 | 
						|
		if err != nil {
 | 
						|
			return 0
 | 
						|
		}
 | 
						|
		_, _ = client.Import(ctx, bytes.NewReader(tarBytes))
 | 
						|
	}
 | 
						|
	return 1
 | 
						|
}
 |